| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!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="box_list">
- <ul>
- <li>
- <a th:href="@{/mobile/notify/noticePage}">
- <i class="iconfont icon-tongzhi"></i>
- <span>通知公告</span>
- </a>
- </li>
-
- <li>
- <a th:href="@{/mobile/fee/feePage}">
- <i class="iconfont icon-shuidian"></i>
- <span>费用查询</span>
- </a>
- </li>
- <li>
- <a th:href="@{/mobile/repair/addRepair}">
- <i class="iconfont icon-xiuli"></i>
- <span>我要报修</span>
- </a>
- </li>
- <!-- <li>
- <a href="">
- <i class="iconfont icon-shuju"></i>
- <span>数据填写</span>
- </a>
- </li>
- <li>
- <a href="">
- <i class="iconfont icon-qiyezhanshi00"></i>
- <span>信息发布</span>
- </a>
- </li> -->
-
- </ul>
- </div>
- </section>
- <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>
|