| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <div th:replace="~{mobile/header :: header}"></div>
- <body>
- <header>
- <span >我</span>
- </header>
- <!-- 内容 -->
- <section class="content has_header has_footer">
- <div class="header">
- <!-- <h1 class="title" th:text="${company.company_name}" id="companyName"></h1> -->
- <h1 class="title" id="companyName"></h1>
- </div>
- <div class="box_list">
- <ul>
- <li>
- <a th:href="@{/mobile/account/changePassword}">
- <i class="iconfont icon-tongzhi"></i>
- <span>修改密码</span>
- </a>
- </li>
-
- <li>
- <a th:href="@{/mobile/account/changeMobile}">
- <i class="iconfont icon-shuidian"></i>
- <span>修改手机号</span>
- </a>
- </li>
- <li>
- <a th:href="@{/mobile/logout}">
- <i class="iconfont icon-xiuli"></i>
- <span>退出登录</span>
- </a>
- </li>
- </ul>
- </div>
- </section>
- <script>
- $(function(){
- bindCompanyInfo();
- });
-
- function bindCompanyInfo(){
- $.ajax({
- type: "Get",
- dataType: "json",
- url: pagePath+"/mobile/account/getCompanyInfo",
- data: {
- },
- success: function (result) {
- if (result.success) {
- var company = result.obj;
- $("#companyName").text(company.company_name);
- } else {
- sadMessage(result.message);
- }
- },
- error: function () {
- sadMessage("系统错误!");
- //errorMessage('系统错误!');
- }
- });
-
- }
- </script>
-
- <div class="bottom-fxied">
- <footer>
- <span>
- <a th:href="@{/mobile/home}" >
- <i class="iconfont icon-shouye"></i>
- <div>首页</div>
- </a>
- </span>
- <span>
- <a th:href="@{/mobile/company/companyPage}" >
- <i class="iconfont icon-enterprise"></i>
- <div>产品</div>
- </a>
- </span>
- <span>
- <a th:href="@{/mobile/service}" class="active">
- <i class="iconfont icon-msnui-service"></i>
- <div>服务</div>
- </a>
- </span>
- <span>
- <a th:href="@{/mobile/account}">
- <i class="iconfont icon-wo"></i>
- <div>我</div>
- </a>
- </span>
- </footer>
- </div>
- </body>
- </html>
|