1
0

sale.html 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>收付款管理</title>
  5. #parse("sys/header.html")
  6. <style type="text/css">
  7. #saomiao{
  8. padding-right: 30px;
  9. }
  10. #saomiao input{
  11. margin-top:20px;
  12. height: 70px;
  13. width: 100%;
  14. border: 3px solid #62e2f5
  15. }
  16. .goods-button{
  17. border: #e5a032;
  18. /*background-color: #e5a032;*/
  19. font-size: 1.3em;
  20. margin-left: 20px;
  21. }
  22. .search_menu{
  23. /*border-top:5px solid #3388FF;*/
  24. /*display: none;*/
  25. background-color: ghostwhite;
  26. position: absolute;
  27. z-index: 999;
  28. /*top:30px;*/
  29. width:87%;
  30. }
  31. .search_menu ul{
  32. margin-bottom: 0; //去除ul的底部外边距
  33. }
  34. .search_menu li {
  35. padding: 5px;
  36. font-size: 1.1em;
  37. cursor: pointer;
  38. overflow: hidden;
  39. white-space: nowrap;
  40. }
  41. .search_menu li:hover{
  42. background-color: beige;
  43. }
  44. .search:hover .search_menu {
  45. display: block;
  46. }
  47. .selBoxList{width:100%;margin-top:50px;text-align:center;}
  48. .selBoxList .selSt{min-width:100px;display:inline-block;position:relative;;}
  49. .selBoxList .selSt .current{width:100%;padding:0 10px;font-size:16px;line-height:30px;cursor:pointer;float:left;border:1px solid #ccc;background:#fff;box-sizing: border-box;position:relative;z-index: 2;}
  50. .selBoxList .selSt .box{width:100%;position:absolute;left:0;top:30px;border:1px solid #ccc;max-height:300px;overflow:auto;box-sizing: border-box;}
  51. .selBoxList .selSt .box span{width:100%;font-size:16px;line-height:30px;cursor:pointer;border-top:1px solid #ccc;float:left;}
  52. .selBoxList .selSt .box span:hover{background:#f1f1f1;}
  53. </style>
  54. <link rel="stylesheet" href="${rc.contextPath}/statics/plugins/jqgrid/ui.jqgrid-bootstrap.css">
  55. <!--<link rel="stylesheet" href="${rc.contextPath}/statics/css/sale.css">-->
  56. </head>
  57. <body>
  58. <div id="rrapp" v-cloak>
  59. <header class="main-header">
  60. <div class="container-fluid">
  61. <div class="row" style="border:0;margin-bottom:10px">
  62. <div class="col-md-3 logodiv">
  63. <!--center-block-->
  64. <img src="${rc.contextPath}/statics/img/logotest2.jpg" class="img-rounded img-responsive" style="height: 70px;">
  65. </div>
  66. <div class="col-md-9" style="background-color: #f0f0f0;margin:0px;padding: 0px" >
  67. <div v-show="showList">
  68. <Row :gutter="16">
  69. <ul class="nav navbar-top-links navbar-right" style="font-size: 1.3em;">
  70. <li>
  71. <i-input v-model="orderSn1" @on-enter="queryInveResponse" placeholder="输入要查询回执的订单号" id="queryInveResponse" />
  72. </li>
  73. <li>
  74. <i-input v-model="orderSn" @on-enter="queryOrderStatus" placeholder="输入要查询订单状态的订单号" id="queryOrderStatus" />
  75. </li>
  76. <li >
  77. <span style="margin-right: 40px">&nbsp; 门店:<b>{{storeName}}</b></span>
  78. </li>
  79. <li><span style="margin-right: 35px"><i class="fa fa-user-circle" ></i> &nbsp;收银员:<b>{{sysUserInfo.username}}</b></span></li>
  80. <li><a @click="logout" style="font-size: 1em"><i class="fa fa fa-sign-out"></i> 退出</a></li>
  81. </ul>
  82. </Row>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. </header>
  88. <div class="container-fluid" style="margin-top: 15px">
  89. <div id="content" class="row-fluid">
  90. <div class="col-md-3">
  91. <div>
  92. <i-input class="search" placeholder="输入或扫码商品条形码" id="saomiao" v-model.trim='prodBarcode' @on-enter="searchQuery(prodBarcode)"/>
  93. </div>
  94. <div v-show="prodBarcode" class="search_menu">
  95. <ul>
  96. <li v-for="item in searchGoodsList" :key="item.id" @click="searchQuery(item.prodBarcode)">
  97. {{item.name}}
  98. </li>
  99. </ul>
  100. </div>
  101. <ul class="list-unstyled">
  102. <!--<li >
  103. <i-input v-model="prodBarcode" @on-enter="query" placeholder="输入或扫码商品条形码" id="saomiao" />
  104. </li>-->
  105. <li style="margin-top: 50px;" >
  106. <div v-show="goodsDetail" style="font-size: 1.2em">
  107. <img style="height: 400px;width: 400px;" :src="goods.primaryPicUrl" class="img-rounded"/>
  108. <h1 style="margin: 8px;"><strong>{{goods.name}}</strong></h1>
  109. <p style="margin: 8px;">单价: <strong>{{goods.retailPrice}}</strong> /元</p>
  110. <p style="margin: 8px;">税费: <strong>{{goods.goodstaxes}}</strong> /元</p>
  111. <p style="margin: 8px;">规格: {{goods.specification}}</p>
  112. <p style="margin: 8px;">条形码: {{goods.prodBarcode}}</p>
  113. <!--<span style="margin: 8px;">商品描述: {{goods.goodsDesc}}</span>-->
  114. <span style="margin: 8px;">门店库存: {{goods.stockNum}}</span>
  115. </div>
  116. <div v-show="!goodsDetail">
  117. <h3 style="text-align: center">请扫描商品</h3>
  118. </div>
  119. </li>
  120. </ul>
  121. </div>
  122. <div class="col-md-6" style="padding: 0px;padding-bottom: 10%;background-color: #f0f0f0">
  123. <ul class="list-unstyled; ">
  124. <li ref="overflowLi" style="height: 600px;overflow:auto">
  125. <table id="cbec" class="table .table-striped">
  126. <tr style="border: white;background-color: #F5DCB3;font-size: 1.3em" >
  127. <th style="width: 300px;padding: 7px">跨境商品名称</th>
  128. <th style="padding: 7px">单价</th>
  129. <th style="padding: 7px">优惠金额</th>
  130. <th style="padding: 7px">税费</th>
  131. <th style="padding: 7px">实际支付价</th>
  132. <th style="padding: 7px">数量</th>
  133. <th style="padding: 7px">参与活动</th>
  134. <th>操作</th>
  135. </tr>
  136. <tr v-for="(item,i) in goodsList" v-if="item.name" style="font-size: 1.3em">
  137. <td><h3>{{item.name}}</h3></td>
  138. <td> {{item.retailPrice}}</td>
  139. <td> {{item.discountedPrice}}</td>
  140. <td> {{item.goodstaxes}}</td>
  141. <td> {{item.actualPaymentAmount}}</td>
  142. <td>
  143. <i class="glyphicon glyphicon-minus" aria-hidden="true" @click="minus(item.id)"></i>
  144. {{item.sellVolume}}
  145. <i class="glyphicon glyphicon-plus" aria-hidden="true" @click="add(item.id)"></i>
  146. </td>
  147. <td>
  148. {{item.activity}}
  149. </td>
  150. <td >
  151. <i class="glyphicon glyphicon-remove" aria-hidden="true" @click="deleteItem(item.id)"></i>
  152. </td>
  153. </tr>
  154. </table>
  155. </li>
  156. <li>
  157. <ul>
  158. <li><h3 style="border: white;padding: 8px;">总件数:{{totalCount}}</h3></li>
  159. <li><h3 style="border: white;padding: 8px;">总价:{{totalPrice}}</h3></li>
  160. <li><h3 style="border: white;padding: 8px">优惠价:{{discountedPrice}}</h3></li>
  161. <li><h3 style="border: white;padding: 8px">实际支付价:{{actualPrice}}</h3></li>
  162. <li v-if="showReduceMoney != 0"><h3 style="border: white;padding: 8px">满减:{{showReduceMoney}}</h3></li>
  163. </ul>
  164. </li>
  165. <li style="height: 100px;">
  166. <i-button type="error" @click="clearGoodsList" class="goods-button"><i class="fa fa-pencil-square-o"></i>&nbsp;清空</i-button>
  167. <i-button data-toggle="modal" @click="pendingOrder" class="goods-button" ><i class="fa fa-pencil-square-o"></i>&nbsp;订单挂起</i-button>
  168. <i-button data-toggle="modal" @click="toResumePending" class="goods-button" ><i class="fa fa-pencil-square-o"></i>&nbsp;恢复挂起</i-button>
  169. <i-button data-toggle="modal" @click="toOrderSubmit" type="primary" class="goods-button" ><i class="fa fa-pencil-square-o"></i>&nbsp;提交订单</i-button>
  170. <!-- 45636914-->
  171. <div class="modal fade" id="pendignOrderModal" role="dialog" aria-labelledby="pendignOrderLabel" aria-hidden="true">
  172. <div class="modal-dialog">
  173. <div class="modal-content">
  174. <div class="modal-header">
  175. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  176. <h4 class="modal-title" id="pendingOrderLabel">挂起订单列表{{pendingOrderKeys}}</h4>
  177. </div>
  178. <div class="modal-body">
  179. <div class="col-xs-4 col-sm-4" v-for="(value,index) in pendingOrderKeys" style="margin-bottom: 8px;">
  180. <i-button data-toggle="modal" data-target="#resumePending" style="width: 110px;font-family: 微软雅黑" @click="resumePending(value)" >&nbsp;{{value}}</i-button>
  181. </div>
  182. </div>
  183. <div class="modal-footer">
  184. </div>
  185. </div>
  186. </div>
  187. </div>
  188. <div class="modal fade" id="myModal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  189. <div class="modal-dialog">
  190. <div class="modal-content">
  191. <div class="modal-header">
  192. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  193. <h4 class="modal-title" id="exampleModalLabel">订购人信息</h4>
  194. </div>
  195. <div class="modal-body">
  196. <form>
  197. <div class="form-group">
  198. <label for="customPhone" class="control-label">手机号:</label>
  199. <input autocomplete="off" type="text" class="form-control" ref="customPhone" id="customPhone" @blur="customPhoneBlur" />
  200. </div>
  201. <div class="form-group">
  202. <label for="customName" class="control-label">姓名:</label>
  203. <input autocomplete="off" type="text" class="form-control" ref="customName" id="customName" />
  204. </div>
  205. <div class="form-group">
  206. <label for="customIDCard" class="control-label">身份证:</label>
  207. <input autocomplete="off" type="text" class="form-control" ref="customIDCard" id="customIDCard" />
  208. </div>
  209. <div class="form-group">
  210. <label class="control-label">寄送方式:&nbsp;&nbsp;</label>
  211. <span class="control-label">快递柜打包:&nbsp;&nbsp;<input autocomplete="off" type="radio" @click="sendDiva" ref="status" name="status" value="1" checked="checked"/></span>&nbsp;&nbsp;
  212. <span class="control-label">寄送到家:&nbsp;&nbsp;<input autocomplete="off" type="radio" @click="sendDivb" ref="status" name="status" value="0" /></span>
  213. </div>
  214. <div class="form-group sendShow" style="border-bottom: 1px solid #e5e5e5;">
  215. <h4 class="modal-title">收件人信息</h4>
  216. </div>
  217. <div class="form-group sendShow">
  218. 省:<select id="cmbProvince" value=""></select>
  219. 市:<select id="cmbCity" value=""></select>
  220. 区:<select id="cmbArea" value=""></select>
  221. </div>
  222. <div class="form-group sendShow">
  223. <label for="addrUser" class="control-label">详细地址:</label>
  224. <input autocomplete="off" type="text" class="form-control" ref="addrUser" id="addrUser" />
  225. </div>
  226. <div v-if="coupons.size > 0" class="form-group">
  227. <label for="couponSn" class="control-label">优惠券码:</label>
  228. <input type="text" class="form-control" ref="couponSn" id="couponSn" />
  229. </div>
  230. </form>
  231. </div>
  232. <div class="modal-footer">
  233. <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
  234. <button type="button" class="btn btn-primary" @click="queryIDCardInfo">查询身份信息</button>
  235. <button type="button" class="btn btn-primary" @click="getIDCardInfo" id="IDCard">读取身份证信息</button>
  236. <button type="button" class="btn btn-primary" @click="submitCustomInfo" id="Send">去付款</button>
  237. </div>
  238. </div>
  239. </div>
  240. </div>
  241. <!--付款码 -->
  242. <div class="modal fade" id="payModal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  243. <div class="modal-dialog">
  244. <div class="modal-content">
  245. <div class="modal-header">
  246. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  247. <h4 class="modal-title" id="payModalLabel">付款码</h4>
  248. </div>
  249. <div class="modal-body">
  250. <form>
  251. <div class="form-group">
  252. <i-input id="payCode" @on-enter="submitOrder" ref="payCode" placeholder="请输入付款码"/>
  253. </div>
  254. </form>
  255. </div>
  256. <div class="modal-footer">
  257. <button type="button" class="btn btn-primary" @click="submitOrder" id="submitOrder" data-dismiss="modal">提交</button>
  258. </div>
  259. </div>
  260. </div><!-- /.modal -->
  261. </div>
  262. </li>
  263. </ul>
  264. </div>
  265. <div class="col-md-3">
  266. <h2 class="text-center" style="border: white;background-color: #F5DCB3;padding: 8px" >取货码 <span v-show="delayResponse"> 海关卡回执导致单量堆积</span></h2><br/>
  267. <div class="row" style="border: white;background-color: #f0f0f0;overflow:auto;height: 700px;">
  268. <div class="col-xs-4 col-sm-4" v-for="(item,i) in pickUpCodeList" style="margin-bottom: 8px;">
  269. <i-button data-toggle="modal" data-target="#orderDetail" style="width: 110px;font-family: 微软雅黑" @click="queryOrderDetail(item.orderSn,item.pickUpCodeSn)" v-if="item.pickUpCodeStatus == 0" >&nbsp;{{item.pickUpCodeSn}}</i-button>
  270. <i-button data-toggle="modal" data-target="#orderDetail" style="background-color:#83e7b4;width: 110px;font-family: 微软雅黑" @click="queryOrderDetail(item.orderSn,item.pickUpCodeSn)" v-if="item.pickUpCodeStatus == 1" >{{item.pickUpCodeSn}}</i-button>
  271. <i-button data-toggle="modal" data-target="#orderDetail" style="background-color:#808080;width: 110px;font-family: 微软雅黑" @click="queryOrderDetail(item.orderSn,item.pickUpCodeSn)" v-if="item.pickUpCodeStatus == 2" >{{item.pickUpCodeSn}}</i-button>
  272. <i-button data-toggle="modal" data-target="#orderDetail" style="background-color:#FF0000;width: 110px;font-family: 微软雅黑" @click="queryOrderDetail(item.orderSn,item.pickUpCodeSn)" v-if="item.pickUpCodeStatus == 4" >{{item.pickUpCodeSn}}</i-button>
  273. <i-button data-toggle="modal" data-target="#orderDetail" style="background-color:#ffc800;width: 110px;font-family: 微软雅黑" @click="queryOrderDetail(item.orderSn,item.pickUpCodeSn)" v-if="item.pickUpCodeStatus == 5" >{{item.pickUpCodeSn}}</i-button>
  274. </div>
  275. </div>
  276. </div>
  277. <!--付款码 -->
  278. <div class="modal fade " id="orderDetail" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  279. <div class="modal-dialog modal-lg" style="width: 80%;height: 80%">
  280. <div class="modal-content">
  281. <div class="modal-header">
  282. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  283. <h4 class="modal-title" id="orderDetailLabel">订单详情</h4>
  284. </div>
  285. <div class="modal-body">
  286. <div class="row" style="border:0">
  287. <div class="col-md-3" id="orderNo">订单编号: {{orderEntity.orderSn}}</div>
  288. <div class="col-md-3" id="serialNumber">支付流水号: <span>{{orderProcessRecord.payTransactionId}}</span></div>
  289. <div class="col-md-3" id="waybillNo">运单编号: {{orderProcessRecord.logisticsNo}}</div>
  290. <div class="col-md-3" id="inventoryNo">清单编号: {{orderProcessRecord.invtNo}}</div>
  291. </div>
  292. <div class="row" style="border:0">
  293. <div class="col-md-3" id="orderDeclarationTime">订单申报时间: {{orderProcessRecord.eleOrderStartTime}}</div>
  294. <div class="col-md-3" id="payDeclarationTime">支付单申报时间: {{orderProcessRecord.paymentStartTime}}</div>
  295. <div class="col-md-3" id="waybillDeclarationTime">运单申报时间: {{orderProcessRecord.waybillStartTime}}</div>
  296. <div class="col-md-3" id="inventoryDeclarationTime">清单放行时间: {{orderProcessRecord.customsSuccTime}}</div>
  297. </div>
  298. <div class="row" style="border:0">
  299. <div class="col-md-3" id="orderSubmitTime">订单提交时间: {{orderProcessRecord.addOrderStartTime}}</div>
  300. <div class="col-md-3" id="payStatus">支付状态:
  301. <span v-if="orderEntity.payStatus == 0">未付款</span>
  302. <span v-if="orderEntity.payStatus == 1">付款中</span>
  303. <span v-if="orderEntity.payStatus == 2">已付款</span>
  304. </div>
  305. <div class="col-md-3" id="inventoryStatus">清关状态:
  306. <span v-if="orderProcessRecord.isCustomsSend == 0">失败</span>
  307. <span v-if="orderProcessRecord.isCustomsSend == 1">成功</span>
  308. <span v-if="orderProcessRecord.isCustomsSend == 2">清关中</span>
  309. </div>
  310. </div>
  311. <div class="row" style="border:0">
  312. <div class="col-md-3" id="orderDeclareStatus">订单申报状态:
  313. <span v-if="orderProcessRecord.isEleOrderSend == 0">失败</span>
  314. <span v-if="orderProcessRecord.isEleOrderSend == 1">成功</span>
  315. <span v-if="orderProcessRecord.isEleOrderSend == 2">申报中</span>
  316. </div>
  317. <div class="col-md-3" id="payOrderDeclareStatus">支付单申报状态:
  318. <span v-if="orderProcessRecord.isPaymentSend == 0">失败</span>
  319. <span v-if="orderProcessRecord.isPaymentSend == 1">成功</span>
  320. <span v-if="orderProcessRecord.isPaymentSend == 2">申报中</span>
  321. </div>
  322. </div>
  323. <div class="row" style="border:0">
  324. <div class="col-md-3" id="orderTotal">订单总金额: {{orderEntity.orderPrice}}</div>
  325. <div class="col-md-3" id="actualPrice">订单实际支付金额: {{orderEntity.actualPrice}}</div>
  326. <div class="col-md-3" id="discount">订单优惠券金额: {{orderEntity.couponPrice}}</div>
  327. <div class="col-md-3" id="orderTaxes">订单预估税费: {{tax}}</div>
  328. </div>
  329. <div class="row" style="border:0">
  330. <div class="col-md-3" id="payName">姓名: {{orderEntity.payName}}</div>
  331. <div class="col-md-3" id="mobile">手机号: {{orderEntity.payMobile}}</div>
  332. <div class="col-md-3" id="pickUpCodeSn">取货码: {{orderEntity.pickUpCodeSn}}</div>
  333. </div>
  334. <div class="row" style="border:0">
  335. <div class="col-md-12" id="invetoryReceipt">失败原因: {{response}}</div>
  336. </div>
  337. <table id="goodsDetailTable" class="table .table-striped" style="margin-top: 50px;">
  338. <tr style="border: white;background-color: orange">
  339. <th>商品名称</th>
  340. <th>规格</th>
  341. <th>市场价</th>
  342. <th>优惠价</th>
  343. <th>数量</th>
  344. <th>实际支付价</th>
  345. <th>预估税费</th>
  346. <th>参与活动</th>
  347. </tr>
  348. <tr v-for="(item,i) in goodsDetailList" >
  349. <td><h3>{{item.goodsName}}</h3></td>
  350. <td>{{item.specification}}</td>
  351. <td>{{item.marketPrice}}</td>
  352. <td>{{item.discountedPrice}}</td>
  353. <td>{{item.number}}</td>
  354. <td>{{item.actualPaymentAmount}}</td>
  355. <td >{{item.tax}}</td>
  356. <td >{{item.activity}}</td>
  357. </tr>
  358. </table>
  359. </div>
  360. <div class="modal-footer">
  361. <button v-if="canRefund" type="button" style="margin:0 30px 0 20px;font-size: 20px;float: left" class="btn ivu-btn-error" @click="refundOrder()" id="refundOrder" data-dismiss="modal">退款</button>
  362. <button v-else disabled type="button" style="margin:0 30px 0 25px;font-size: 20px;float: left" class="btn ivu-btn-error" @click="refundOrder()" data-dismiss="modal">退款</button>
  363. <button type="button" style="margin:0 30px 0 20px;font-size: 25px;" class="btn btn-warning" @click="confirmDelivery" id="confirmDelivery" data-dismiss="modal">确定提货</button>
  364. <button type="button" style="margin:0 30px 0 20px;font-size: 25px;" class="btn btn-primary" @click="resendNotice" id="resendNotice" data-dismiss="modal">重发通知</button>
  365. <button type="button" style="margin:0 30px 0 20px;font-size: 25px;" class="btn btn-primary" @click="resendWaybill" id="resendWaybill" data-dismiss="modal">重发运单</button>
  366. <button type="button" style="margin:0 30px 0 20px;font-size: 25px;" class="btn btn-primary" @click="resendPayment" id="resendPayment" data-dismiss="modal">重发支付单</button>
  367. <!-- <button type="button" style="margin:0 30px 0 20px;font-size: 25px;" class="btn btn-primary" @click="resendOrder" id="resendOrder" data-dismiss="modal">重发订单</button>-->
  368. <button type="button" style="margin:0 30px 0 20px;font-size: 25px;" class="btn btn-primary" @click="forceSendToOms" id="forceSendToOms" data-dismiss="modal">强推清关</button>
  369. <button type="button" style="margin:0 30px 0 20px;font-size: 25px;" class="btn btn-primary" @click="verification" id="verification" data-dismiss="modal">核销</button>
  370. </div>
  371. </div>
  372. </div><!-- /.modal -->
  373. </div>
  374. </div>
  375. </div>
  376. </div>
  377. <div style="display: none">
  378. <img src="/statics/img/yto_logo.jpg">
  379. <img src="/statics/img/bestex_logo.jpeg">
  380. <img src="/statics/img/bestex_logo2.jpeg">
  381. <img src="/statics/img/bestex_logo2.png">
  382. <img src="/statics/img/bestex_logo3.png">
  383. </div>
  384. <script type="application/javascript">
  385. let mailTypes = ["best", "yto"];
  386. var strategies = {
  387. "best": function(data){
  388. return render_of_best(data);
  389. },
  390. "yto": function(data){
  391. return render_of_yto(data);
  392. }
  393. };
  394. for (let i = 0; i < mailTypes.length; i++) {
  395. strategies[mailTypes[i]] = "";
  396. }
  397. var renderMailInfo = function(exprCode, data){
  398. return strategies[exprCode](data);
  399. };
  400. </script>
  401. <script src="${rc.contextPath}/statics/dist/js7_jsAddress.js"></script>
  402. <script src="${rc.contextPath}/js/sale/sale.js?_${date.systemTime}"></script>
  403. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  404. <script src="${rc.contextPath}/statics/libs/bootstrap.min.js"></script>
  405. </body>
  406. </html>