| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <div th:replace="~{mobile/header :: header}"></div>
- <body>
- <header>
- <a class="back" href="javascript:history.go(-1);"> <i class="iconfont icon-fanhui"></i></a>
- <span >企业信息发布</span>
- </header>
- <!-- 内容 -->
- <section class="content has_header">
- <div class="form">
- <div class="form_item">
- <input id="prodName" type="text" placeholder="产品名称:">
- </div>
- <div class="form_item">
- <textarea id="prodInto" cols="30" rows="10" placeholder="产品介绍:"></textarea>
- </div>
- <div class="form_item">
- <span>文件上传:</span> <input type="file" />
- </div>
- <div class="form-btn">
- <button class="btn btn_yellow" >保存</button>
- <button class="btn btn_yellow" >发布</button>
- <button class="btn btn_yellow" >取消</button>
- </div>
- </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}" class="active" >
- <i class="iconfont icon-enterprise"></i>
- <div>产品</div>
- </a>
- </span>
- <span>
- <a th:href="@{/mobile/service}">
- <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>
|