data_form.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <div th:replace="~{mobile/header :: header}"></div>
  4. <body>
  5. <header>
  6. <a class="back" href="javascript:history.go(-1);"> <i class="iconfont icon-fanhui"></i></a>
  7. <span >企业数据填报</span>
  8. </header>
  9. <!-- 内容 -->
  10. <section class="content has_header">
  11. <div class="form">
  12. <div class="form_item">
  13. <button class="btn btn_yellow">模板下载</button>
  14. </div>
  15. <div class="form_item">
  16. <span>文件上传:</span> <input type="file" />
  17. </div>
  18. <div class="form-btn">
  19. <button class="btn btn_yellow" >提交</button>
  20. <button class="btn btn_yellow" >取消</button>
  21. </div>
  22. </div>
  23. </section>
  24. <div class="bottom-fxied">
  25. <footer>
  26. <span>
  27. <a th:href="@{/mobile/home}" >
  28. <i class="iconfont icon-shouye"></i>
  29. <div>首页</div>
  30. </a>
  31. </span>
  32. <span>
  33. <a th:href="@{/mobile/company/companyPage}" class="active" >
  34. <i class="iconfont icon-enterprise"></i>
  35. <div>产品</div>
  36. </a>
  37. </span>
  38. <span>
  39. <a th:href="@{/mobile/service}">
  40. <i class="iconfont icon-msnui-service"></i>
  41. <div>服务</div>
  42. </a>
  43. </span>
  44. <span>
  45. <a th:href="@{/mobile/account}">
  46. <i class="iconfont icon-wo"></i>
  47. <div>我</div>
  48. </a>
  49. </span>
  50. </footer>
  51. </div>
  52. </body>
  53. </html>