enterprise_form.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <input id="prodName" type="text" placeholder="产品名称:">
  14. </div>
  15. <div class="form_item">
  16. <textarea id="prodInto" cols="30" rows="10" placeholder="产品介绍:"></textarea>
  17. </div>
  18. <div class="form_item">
  19. <span>文件上传:</span> <input type="file" />
  20. </div>
  21. <div class="form-btn">
  22. <button class="btn btn_yellow" >保存</button>
  23. <button class="btn btn_yellow" >发布</button>
  24. <button class="btn btn_yellow" >取消</button>
  25. </div>
  26. </div>
  27. </section>
  28. <div class="bottom-fxied">
  29. <footer>
  30. <span>
  31. <a th:href="@{/mobile/home}" >
  32. <i class="iconfont icon-shouye"></i>
  33. <div>首页</div>
  34. </a>
  35. </span>
  36. <span>
  37. <a th:href="@{/mobile/company/companyPage}" class="active" >
  38. <i class="iconfont icon-enterprise"></i>
  39. <div>产品</div>
  40. </a>
  41. </span>
  42. <span>
  43. <a th:href="@{/mobile/service}">
  44. <i class="iconfont icon-msnui-service"></i>
  45. <div>服务</div>
  46. </a>
  47. </span>
  48. <span>
  49. <a th:href="@{/mobile/account}">
  50. <i class="iconfont icon-wo"></i>
  51. <div>我</div>
  52. </a>
  53. </span>
  54. </footer>
  55. </div></body>
  56. </html>