hbk6zzez.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>取货码状态列表</title>
  5. #parse("sys/header.html")
  6. </head>
  7. <body>
  8. <div id="rrapp" v-cloak>
  9. <div v-show="showList" class="col-md-12">
  10. <div class="row-fluid">
  11. <div class="col-md-3">
  12. <br/><h2 class="text-center" style="border: white;background-color: #F5DCB3;padding: 8px;font-weight: 600;" >待清关,请等待</h2><br/>
  13. <div class="row" style="border: white;background-color: #f0f0f0; overflow: auto; height: 750px;">
  14. <div class="col-xs-6 col-sm-6" v-for="item in pickUpCodeList" v-if="item.pickUpCodeStatus == 0" style="margin-bottom: 12px;padding-left: 10px;">
  15. <i-button data-toggle="modal" style="width: 110px;font-family: 微软雅黑;height: 50px;font-size: 17px; font-weight: 600;" v-if="item.pickUpCodeStatus == 0" >{{item.pickUpCodeSn}}</i-button>
  16. </div>
  17. </div>
  18. </div>
  19. <div class="col-md-3">
  20. <br/><h2 class="text-center" style="border: white;background-color: #F5DCB3;padding: 8px;font-weight: 600;" >清关成功,待取货</h2><br/>
  21. <div class="row" style="border: white;background-color: #f0f0f0; overflow: auto; height: 750px;">
  22. <div class="col-xs-6 col-sm-6" v-for="item in pickUpCodeList" v-if="item.pickUpCodeStatus == 2" style="margin-bottom: 12px;padding-left: 10px;">
  23. <i-button data-toggle="modal" style="background-color:#808080;width: 110px;font-family: 微软雅黑;height: 50px;font-size: 17px; font-weight: 600;color: white;" v-if="item.pickUpCodeStatus == 2" >{{item.pickUpCodeSn}}</i-button>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="col-md-4">
  28. <br/><h2 class="text-center" style="border: white;background-color: #F5DCB3;padding: 8px;font-weight: 600;" >清关成功,可取货</h2><br/>
  29. <div class="row" style="border: white;background-color: #f0f0f0; overflow: auto; height: 750px;">
  30. <div class="col-xs-4 col-sm-4" v-for="item in pickUpCodeList" v-if="item.pickUpCodeStatus == 1" style="margin-bottom: 12px;">
  31. <i-button data-toggle="modal" style="background-color:#83e7b4;width: 100px;font-family: 微软雅黑;height: 50px;font-size: 17px; font-weight: 600;" v-if="item.pickUpCodeStatus == 1" >{{item.pickUpCodeSn}}</i-button>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="col-md-2">
  36. <br/><h2 class="text-center" style="border: white;background-color: #F5DCB3;padding: 8px;font-weight: 600;" >清关失败</h2><br/>
  37. <div class="row" style="border: white;background-color: #f0f0f0; overflow: auto; height: 750px;">
  38. <div class="col-xs-12 col-sm-12" v-for="item in pickUpCodeList" v-if="item.pickUpCodeStatus == 4" style="margin-bottom: 12px;">
  39. <i-button data-toggle="modal" style="background-color:#FF0000;width: 110px;font-family: 微软雅黑;height: 50px;font-size: 17px;color: white;font-weight: 600" v-if="item.pickUpCodeStatus == 4" >{{item.pickUpCodeSn}}</i-button>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. <script src="${rc.contextPath}/js/pcd/hbk6zzez.js?_${date.systemTime}"></script>
  47. </body>
  48. </html>