shopList.html 3.9 KB

1
  1. <!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})"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>阿凡提-购物车</title> <link th:href="${portalHost+'/dll/dll.css'}" rel="stylesheet"> <link th:href="${portalHost+'/vendors.css'}" rel="stylesheet"> <link th:href="${portalHost+'/newMenu/shopList.css'}" rel="stylesheet"></head> <body> <div th:replace="common::nav('','trading')"></div> <div class="navigationShop"> <div class="shopAll"> <div class="container"> <!-- <img th:src="${portalHost+'/img/shopList/shop_all.png'}" alt=""> --> 全部商品<span class="numberTotal">0</span>件</div> </div> <div class="container"> <div class="tabShop"> <ol class="table"> <li> <span class="checkImg checkNoImg"></span><input type="checkbox" class="checkboxAll" id="checkboxAll"><label for="checkboxAll">全选</label> </li> <li> <span>单价(万元)</span> </li> <li> <span>数量(件)</span> </li> <li> <span>小计(万元)</span> </li> <li> <span>操作</span> </li> </ol> <ul class="shopLists"> </ul> <div class="totalFooter"> <span class="checkImg checkNoImg"></span><input type="checkbox" class="checkboxAll" id="checkboxAlls"><label for="checkboxAlls">全选</label> <button class="btnDel">删除选中的商品</button> <span>已选择<span class="nubTotal">0</span><span class="blue">件 </span>商品</span> <button class="orderOk">确认订单</button> </div> </div> <div class="shopNull"></div> </div> </div> <div class="shopMarsk"> <div class="shopOrderBody"> <div class="shopOrderOk"> <span class="shopClose">X</span> <h4><img th:src="${portalHost+'/img/shopList/shop_Success.jpg'}" alt="">订单提交成功!</h4> <div> <div class="orderNoList"></div> <p>订单信息请到<a th:href="@{/user/account/index.html#/achievementOrderX}"> 客户中心-我的订单 </a>查看</p> <p class="shopTime"><span>3</span>秒之后关闭</p> </div> </div> <div class="shopOrderCancel"> <span class="shopClose">X</span> <h4><img th:src="${portalHost+'/img/shopList/shop_Error.jpg'}" alt="">订单提交失败!</h4> <div> <p>错误原因 : <span class="orderNumber"></span></p> <p>您可以 : <a th:href="@{/portal/index}">继续浏览</a></p> <p class="shopTime"><span>3</span>秒之后关闭</p> </div> </div> </div> </div> <footer> <div th:replace="common::copyright"></div> <div th:replace="common::login"></div> </footer> <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+'/newMenu/shopList.js'}"></script> </div> </body> </html>