service.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <div th:replace="~{mobile/header :: header}"></div>
  4. <body>
  5. <header>
  6. <span >服务</span>
  7. </header>
  8. <!-- 内容 -->
  9. <section class="content has_header has_footer">
  10. <div class="box_list">
  11. <ul>
  12. <li>
  13. <a th:href="@{/mobile/notify/noticePage}">
  14. <i class="iconfont icon-tongzhi"></i>
  15. <span>通知公告</span>
  16. </a>
  17. </li>
  18. <li>
  19. <a th:href="@{/mobile/fee/feePage}">
  20. <i class="iconfont icon-shuidian"></i>
  21. <span>费用查询</span>
  22. </a>
  23. </li>
  24. <li>
  25. <a th:href="@{/mobile/repair/addRepair}">
  26. <i class="iconfont icon-xiuli"></i>
  27. <span>我要报修</span>
  28. </a>
  29. </li>
  30. <!-- <li>
  31. <a href="">
  32. <i class="iconfont icon-shuju"></i>
  33. <span>数据填写</span>
  34. </a>
  35. </li>
  36. <li>
  37. <a href="">
  38. <i class="iconfont icon-qiyezhanshi00"></i>
  39. <span>信息发布</span>
  40. </a>
  41. </li> -->
  42. </ul>
  43. </div>
  44. </section>
  45. <div class="bottom-fxied">
  46. <footer>
  47. <span>
  48. <a th:href="@{/mobile/home}" >
  49. <i class="iconfont icon-shouye"></i>
  50. <div>首页</div>
  51. </a>
  52. </span>
  53. <span>
  54. <a th:href="@{/mobile/company/companyPage}" >
  55. <i class="iconfont icon-enterprise"></i>
  56. <div>产品</div>
  57. </a>
  58. </span>
  59. <span>
  60. <a th:href="@{/mobile/service}" class="active">
  61. <i class="iconfont icon-msnui-service"></i>
  62. <div>服务</div>
  63. </a>
  64. </span>
  65. <span>
  66. <a th:href="@{/mobile/account}">
  67. <i class="iconfont icon-wo"></i>
  68. <div>我</div>
  69. </a>
  70. </span>
  71. </footer>
  72. </div>
  73. </body>
  74. </html>