ht-trade-settlement-list.html 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>航通交易结算表-列表</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  7. <!-- 所有的 css & js 资源 -->
  8. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  9. <link rel="stylesheet" href="../../static/sa.css">
  10. <script src="../../static/kj/vue.min.js"></script>
  11. <script src="../../static/kj/element-ui/index.js"></script>
  12. <script src="../../static/kj/httpVueLoader.js"></script>
  13. <script src="../../static/kj/jquery.min.js"></script>
  14. <script src="../../static/kj/layer/layer.js"></script>
  15. <script src="../../static/sa.js"></script>
  16. </head>
  17. <body>
  18. <div class="vue-box" style="display: none;" :style="'display: block;'">
  19. <div class="c-panel">
  20. <!-- ------------- 检索参数 ------------- -->
  21. <div class="c-title">检索参数</div>
  22. <el-form ref="form" :model='p' @submit.native.prevent>
  23. <sa-item type="text" name="预申报编号" v-model="p.platSeqNo" width="8em"></sa-item>
  24. <sa-item type="text" name="申报单编号" v-model="p.declareId" width="8em"></sa-item>
  25. <sa-item type="text" name="商品名称" v-model="p.goodsNames" width="7em"></sa-item>
  26. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  27. <el-button size="mini" type="info" @click="sa.f5()">重置</el-button>
  28. </el-form>
  29. <!-- ------------- 数据列表 ------------- -->
  30. <el-table class="data-table" ref="data-table" :data="dataList" >
  31. <sa-td type="index" name="序号"></sa-td>
  32. <sa-td name="预申报编号" prop="platSeqNo" width="160px"></sa-td>
  33. <sa-td name="申报人姓名" prop="declareName" ></sa-td>
  34. <sa-td name="商铺名称" prop="shopName" width="160"></sa-td>
  35. <sa-td name="商品名称" prop="goodsNames" width="160"></sa-td>
  36. <sa-td name="总金额" prop="sumAmt" ></sa-td>
  37. <sa-td name="总毛重(kg)" prop="sumGrossWt" ></sa-td>
  38. <sa-td name="总净重(kg)" prop="sumNetWt" ></sa-td>
  39. <sa-td name="运输方式" prop="trafMode" ></sa-td>
  40. <sa-td name="币制" prop="currCode" ></sa-td>
  41. <sa-td name="件数" prop="packNo" ></sa-td>
  42. <sa-td name="车牌号" prop="veNo" ></sa-td>
  43. <sa-td type="enum" name="互助社确认" prop="hzsConfirmStatus" :jv="{1: '已确认[green]', 0: '未确认[#ff910a]'}" ></sa-td>
  44. <sa-td name="确认时间" prop="hzsConfirmTime" width="160"></sa-td>
  45. <sa-td name="互市区" prop="fieldName" width="160"></sa-td>
  46. <sa-td name="申报单编号" prop="declareId" width="160px"></sa-td>
  47. <sa-td name="提运单号" prop="billNo" width="160"></sa-td>
  48. <sa-td name="航次号" prop="voyageNo" width="160"></sa-td>
  49. <sa-td name="创建时间" prop="createTime" width="160"></sa-td>
  50. <el-table-column label="操作" width="210px" fixed="right" >
  51. <template slot-scope="s">
  52. <el-button class="c-btn" type="success" @click="get(s.row)">查看</el-button>
  53. <el-button class="c-btn" type="primary" @click="getOrder(s.row)">边民订单</el-button>
  54. <span>
  55. <el-button v-if="s.row.hzsConfirmStatus===0 &&sa.isAuth('ht-trade-settlement-hzsconfirm')"
  56. class="c-btn" type="warning" @click="hzsConfirm(s.row)">互助社确认</el-button>
  57. <el-button v-else :disabled="true" class="c-btn" type="warning">互助社确认</el-button>
  58. </span>
  59. </template>
  60. </el-table-column>
  61. </el-table>
  62. <!-- ------------- 分页 ------------- -->
  63. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  64. </div>
  65. </div>
  66. <script>
  67. var app = new Vue({
  68. components: {
  69. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  70. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  71. },
  72. el: '.vue-box',
  73. data: {
  74. p: { // 查询参数
  75. platSeqNo: '', // 预申报编号
  76. declareId: '', // 申报单编号
  77. goodsNames: '', // 商品名称
  78. returns:0,
  79. chargebacks:0,
  80. pageNo: 1, // 当前页
  81. pageSize: 10, // 页大小
  82. sortType: 0 // 排序方式
  83. },
  84. dataCount: 0,
  85. dataList: [], // 数据集合
  86. },
  87. methods: {
  88. // 刷新
  89. f5: function() {
  90. sa.ajax('/level-one-server/HtTradeSettlement/getList', sa.removeNull(this.p), function(res) {
  91. this.dataList = res.data; // 数据
  92. this.dataCount = res.dataCount; // 数据总数
  93. sa.f5TableHeight(); // 刷新表格高度
  94. }.bind(this));
  95. },
  96. // 查看
  97. get: function(data) {
  98. sa.showIframe('数据详情', 'ht-trade-settlement-info.html?id=' + data.id, '1050px', '90%');
  99. },
  100. getOrder(data){
  101. sa.showIframe('边民订单', 'ht-trade-settlement-order.html?mainId='+data.id, '90%', '94%');
  102. },
  103. hzsConfirm(data) {
  104. sa.confirm('是否确认订单', function() {
  105. sa.ajax('/level-one-server/HtTradeSettlement/hzsConfirm?id=' + data.id, function(res) {
  106. sa.ok('确认成功');
  107. this.f5();
  108. }.bind(this))
  109. }.bind(this));
  110. }
  111. },
  112. created: function() {
  113. this.f5();
  114. sa.onInputEnter();
  115. }
  116. })
  117. </script>
  118. </body>
  119. </html>