tb-transport-trade-bill-list.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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.billDate" width="120px"></sa-item>
  24. <sa-item type="text" name="对账结果" v-model="p.status" width="120px">
  25. <el-select v-model="p.result">
  26. <el-option label="全部" value=""></el-option>
  27. <el-option label="对账一致" value="0"></el-option>
  28. <el-option label="对账异常" value="1"></el-option>
  29. </el-select>
  30. </sa-item>
  31. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  32. <el-button size="mini" type="info" @click="sa.f5()">重置</el-button>
  33. </el-form>
  34. <!-- ------------- 数据列表 ------------- -->
  35. <el-table class="data-table" ref="data-table" :data="dataList" >
  36. <sa-td name="账单日期" prop="billDate" style="background-color:#dddddd" ></sa-td>
  37. <el-table-column label="货运平台" align="center" >
  38. <sa-td name="收款笔数" prop="receiveCountPlatform" ></sa-td>
  39. <sa-td name="收款金额" prop="receiveAmountPlatform" ></sa-td>
  40. <sa-td name="转账笔数" prop="transferCountPlatform" ></sa-td>
  41. <sa-td name="转账金额" prop="transferAmountPlatform" ></sa-td>
  42. <sa-td name="退款笔数" prop="refundCountPlatform" ></sa-td>
  43. <sa-td name="退款金额" prop="refundAmountPlatform" ></sa-td>
  44. </el-table-column>
  45. <el-table-column label="微信平台" align="center" style="background-color:#dddddd">
  46. <sa-td name="收款笔数" prop="receiveCountWechat" ></sa-td>
  47. <sa-td name="收款金额" prop="receiveAmountWechat" ></sa-td>
  48. <sa-td name="转账笔数" prop="transferCountWechat" ></sa-td>
  49. <sa-td name="转账金额" prop="transferAmountWechat" ></sa-td>
  50. <sa-td name="退款笔数" prop="refundCountWechat" ></sa-td>
  51. <sa-td name="退款金额" prop="refundAmountWechat" ></sa-td>
  52. </el-table-column>
  53. <sa-td name="对账结果" prop="result" type="enum" :jv="{0: '一致', 1: '不一致'}" ></sa-td>
  54. <el-table-column label="操作" fixed="right" width="80px">
  55. <template slot-scope="s">
  56. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  57. </template>
  58. </el-table-column>
  59. </el-table>
  60. <!-- ------------- 分页 ------------- -->
  61. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  62. </div>
  63. </div>
  64. <script>
  65. var app = new Vue({
  66. components: {
  67. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  68. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  69. },
  70. el: '.vue-box',
  71. data: {
  72. p: { // 查询参数
  73. billId: '', // 账单ID
  74. billDate: '', // 账单日期
  75. receiveCountPlatform: '', // 平台收款笔数
  76. receiveAmountPlatform: '', // 平台收款金额
  77. transferCountPlatform: '', // 平台转账笔数
  78. transferAmountPlatform: '', // 平台转账金额
  79. refundCountPlatform: '', // 平台退款笔数
  80. refundAmountPlatform: '', // 平台退款金额
  81. receiveCountWechat: '', // 微信收款笔数
  82. receiveAmountWechat: '', // 微信收款金额
  83. transferCountWechat: '', // 微信转账笔数
  84. transferAmountWechat: '', // 微信转账金额
  85. refundCountWechat: '', // 微信退款笔数
  86. refundAmountWechat: '', // 微信退款金额
  87. pageNo: 1, // 当前页
  88. pageSize: 10, // 页大小
  89. sortType: 0 // 排序方式
  90. },
  91. dataCount: 0,
  92. dataList: [], // 数据集合
  93. },
  94. methods: {
  95. // 刷新
  96. f5: function() {
  97. sa.ajax('/transport-server/TbTransportTradeBill/getList', sa.removeNull(this.p), function(res) {
  98. this.dataList = res.data; // 数据
  99. this.dataCount = res.dataCount; // 数据总数
  100. sa.f5TableHeight(); // 刷新表格高度
  101. }.bind(this));
  102. },
  103. // 查看
  104. get: function(data) {
  105. sa.showIframe('交易对账详情', 'tb-transport-trade-bill-info.html?id=' + data.billId, '900px', '600px');
  106. },
  107. // 查看 - 根据选中的
  108. getBySelect: function(data) {
  109. var selection = this.$refs['data-table'].selection;
  110. if(selection.length == 0) {
  111. return sa.msg('请选择一条数据')
  112. }
  113. this.get(selection[0]);
  114. },
  115. // 修改
  116. update: function(data) {
  117. sa.showIframe('修改数据', 'tb-transport-trade-bill-add.html?id=' + data.id, '1000px', '90%');
  118. },
  119. // 新增
  120. add: function(data) {
  121. sa.showIframe('新增数据', 'tb-transport-trade-bill-add.html?id=-1', '1000px', '90%');
  122. },
  123. // 删除
  124. del: function(data) {
  125. sa.confirm('是否删除,此操作不可撤销', function() {
  126. sa.ajax('/TbTransportTradeBill/delete?id=' + data.billId, function(res) {
  127. sa.arrayDelete(this.dataList, data);
  128. sa.ok('删除成功');
  129. sa.f5TableHeight(); // 刷新表格高度
  130. }.bind(this))
  131. }.bind(this));
  132. },
  133. // 批量删除
  134. deleteByIds: function() {
  135. // 获取选中元素的id列表
  136. let selection = this.$refs['data-table'].selection;
  137. let ids = sa.getArrayField(selection, 'id');
  138. if(selection.length == 0) {
  139. return sa.msg('请至少选择一条数据')
  140. }
  141. // 提交删除
  142. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  143. sa.ajax('/TbTransportTradeBill/deleteByIds', {ids: ids.join(',')}, function(res) {
  144. sa.arrayDelete(this.dataList, selection);
  145. sa.ok('删除成功');
  146. sa.f5TableHeight(); // 刷新表格高度
  147. }.bind(this))
  148. }.bind(this));
  149. },
  150. },
  151. created: function() {
  152. this.f5();
  153. sa.onInputEnter();
  154. }
  155. })
  156. </script>
  157. </body>
  158. </html>