12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <head th:replace="common::header(~{::title},~{::link})">
- <title>阿凡提-服务意向</title>
- <link th:href="${portalHost +'/dll/dll.css'}" rel="stylesheet">
- <link th:href="${portalHost +'/vendors.css'}" rel="stylesheet">
- <link th:href="${portalHost +'/service/purpose.css'}" rel="stylesheet">
- </head>
- <body>
- <input id="ids" th:value="${purpose.commodityId}" type="hidden">
- <input id="commodityType" th:value="${purpose.commodityType}" type="hidden">
- <header>
- <div th:replace="common::nav('service','highTechCognizance')"></div>
- </header>
- <div id="all_achievement">
- <div class="detail">
- <div id="order_title">
- 服务意向
- </div>
- <div id="order_cont">
- <div class="order_cont">
- <div class="order_left">
- <h2 th:text="${purpose.commodityName}">高新企业认定</h2>
- </div>
- <div class="order_right">
- <div>
- <span>价格:</span>
- <span id="commodityPrice" th:text="${purpose.commodityPrice}">0</span>
- </div>
- <div>
- <span>定金:</span>
- <span id="firstPayment" th:text="${purpose.firstPayment}">0</span>
- </div>
- <div>
- <span>订单编号:</span>
- <span id="orderNo" th:text="${purpose.orderNo}">0</span>
- </div>
- <div>
- <span id="createTime" th:text="${purpose.createTime}">2018:01:01 20:00</span>
- </div>
- </div>
- </div>
- <textarea name="liuyan" rows="8" cols="140" placeholder="请备注留言,以便服务人员能更好的了解您的服务意向!"></textarea>
- </div>
- <div id="tijiao">
- <div>提交服务意向</div>
- </div>
- <div id="order_flow">
- <h3>交易流程</h3>
- <div>
- <img th:src="${portalHost+'/img/order_2.png'}" alt=""/>
- </div>
- </div>
-
- </div>
- </div>
- <footer>
- <div th:replace="common::copyright"></div>
- <div th:replace="common::login"></div>
- </footer>
- <div class="msg"><span></span></div>
- <div th:replace="common::footer(~{::script})">
- <script type="text/javascript" th:src="${portalHost + '/dll/dll.js'}"></script>
- <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
- <script type="text/javascript" th:src="${portalHost + '/service/purpose.js'}"></script>
- </div>
- </body>
- </html>
|