ht-trade-chargebacks-list.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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="declareId" width="220px"></sa-td>
  33. <sa-td name="申报人姓名" prop="declareName" ></sa-td>
  34. <sa-td name="互市区" prop="fieldName" width="160"></sa-td>
  35. <sa-td name="商铺名称" prop="shopName" width="160"></sa-td>
  36. <sa-td name="商品名称" prop="goodsNames" width="160"></sa-td>
  37. <sa-td name="总金额" prop="sumAmt" ></sa-td>
  38. <sa-td name="总毛重(kg)" prop="sumGrossWt" ></sa-td>
  39. <sa-td name="总净重(kg)" prop="sumNetWt" ></sa-td>
  40. <sa-td name="运输方式" prop="trafMode" ></sa-td>
  41. <sa-td name="币制" prop="currCode" ></sa-td>
  42. <sa-td name="件数" prop="packNo" ></sa-td>
  43. <sa-td name="车牌号" prop="veNo" ></sa-td>
  44. <sa-td name="提运单号" prop="billNo" width="160"></sa-td>
  45. <sa-td name="航次号" prop="voyageNo" width="160"></sa-td>
  46. <sa-td name="申报日期" prop="createTime" width="160">
  47. <template slot-scope="s">
  48. {{sa.forDate(s.row.declTime, 1)}}
  49. </template>
  50. </sa-td>
  51. <sa-td name="退单时间" prop="returnsTime" width="160"></sa-td>
  52. <el-table-column label="操作" width="140px" fixed="right" >
  53. <template slot-scope="s">
  54. <el-button class="c-btn" type="success" @click="get(s.row)">查看</el-button>
  55. <el-button class="c-btn" type="primary" @click="getOrder(s.row)">边民订单</el-button>
  56. </template>
  57. </el-table-column>
  58. </el-table>
  59. <!-- ------------- 分页 ------------- -->
  60. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  61. </div>
  62. </div>
  63. <script>
  64. var app = new Vue({
  65. components: {
  66. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  67. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  68. },
  69. el: '.vue-box',
  70. data: {
  71. p: { // 查询参数
  72. platSeqNo: '', // 预申报编号
  73. declareId: '', // 申报单编号
  74. goodsNames: '', // 商品名称
  75. chargebacks:1,
  76. pageNo: 1, // 当前页
  77. pageSize: 10, // 页大小
  78. sortType: 0 ,// 排序方式
  79. },
  80. dataCount: 0,
  81. dataList: [], // 数据集合
  82. },
  83. methods: {
  84. // 刷新
  85. f5: function() {
  86. sa.ajax('/level-one-server/HtTradeSettlement/getList', sa.removeNull(this.p), function(res) {
  87. this.dataList = res.data; // 数据
  88. this.dataCount = res.dataCount; // 数据总数
  89. sa.f5TableHeight(); // 刷新表格高度
  90. }.bind(this));
  91. },
  92. // 查看
  93. get: function(data) {
  94. sa.showIframe('数据详情', 'ht-trade-settlement-info.html?id=' + data.id+'&type=chargebacks', '1050px', '90%');
  95. },
  96. getOrder(data){
  97. sa.showIframe('边民订单', 'ht-trade-settlement-order.html?mainId='+data.id, '90%', '94%');
  98. },
  99. },
  100. created: function() {
  101. this.f5();
  102. sa.onInputEnter();
  103. }
  104. })
  105. </script>
  106. </body>
  107. </html>