tb-transport-fundflow-bill-list.html 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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" ></sa-td>
  37. <el-table-column label="货运平台" align="center" >
  38. <sa-td name="收入笔数" prop="inCountPlatform" ></sa-td>
  39. <sa-td name="收入金额" prop="inAmountPlatform" ></sa-td>
  40. <sa-td name="支出笔数" prop="outCountPlatform" ></sa-td>
  41. <sa-td name="支出金额" prop="outAmountPlatform" ></sa-td>
  42. </el-table-column>
  43. <el-table-column label="微信平台" align="center" >
  44. <sa-td name="收入笔数" prop="inCountWechat" ></sa-td>
  45. <sa-td name="收入金额" prop="inAmountWechat" ></sa-td>
  46. <sa-td name="支出笔数" prop="outCountWechat" ></sa-td>
  47. <sa-td name="支出金额" prop="outAmountWechat" ></sa-td>
  48. </el-table-column>
  49. <sa-td name="对账结果" prop="result" type="enum" :jv="{0: '一致', 1: '不一致'}" ></sa-td>
  50. <el-table-column label="操作" fixed="right" width="80px">
  51. <template slot-scope="s">
  52. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  53. </template>
  54. </el-table-column>
  55. </el-table>
  56. <!-- ------------- 分页 ------------- -->
  57. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  58. </div>
  59. </div>
  60. <script>
  61. var app = new Vue({
  62. components: {
  63. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  64. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  65. },
  66. el: '.vue-box',
  67. data: {
  68. p: { // 查询参数
  69. billId: '', // 账单ID
  70. billDate: '', // 账单日期
  71. inCountPlatform: '', // 平台收入笔数
  72. inAmountPlatform: '', // 平台收入金额
  73. outCountPlatform: '', // 平台支出笔数
  74. outAmountPlatform: '', // 平台支出金额
  75. inCountWechat: '', // 微信收入笔数
  76. inAmountWechat: '', // 微信收入金额
  77. outCountWechat: '', // 微信支出笔数
  78. outAmountWechat: '', // 微信支出金额
  79. pageNo: 1, // 当前页
  80. pageSize: 10, // 页大小
  81. sortType: 0 // 排序方式
  82. },
  83. dataCount: 0,
  84. dataList: [], // 数据集合
  85. },
  86. methods: {
  87. // 刷新
  88. f5: function() {
  89. sa.ajax('/transport-server/TbTransportFundflowBill/getList', sa.removeNull(this.p), function(res) {
  90. this.dataList = res.data; // 数据
  91. this.dataCount = res.dataCount; // 数据总数
  92. sa.f5TableHeight(); // 刷新表格高度
  93. }.bind(this));
  94. },
  95. // 查看
  96. get: function(data) {
  97. sa.showIframe('资金对账详情', 'tb-transport-fundflow-bill-info.html?id=' + data.billId, '800px', '500px');
  98. },
  99. // 查看 - 根据选中的
  100. getBySelect: function(data) {
  101. var selection = this.$refs['data-table'].selection;
  102. if(selection.length == 0) {
  103. return sa.msg('请选择一条数据')
  104. }
  105. this.get(selection[0]);
  106. },
  107. // 修改
  108. update: function(data) {
  109. sa.showIframe('修改数据', 'tb-transport-fundflow-bill-add.html?id=' + data.id, '1000px', '90%');
  110. },
  111. // 新增
  112. add: function(data) {
  113. sa.showIframe('新增数据', 'tb-transport-fundflow-bill-add.html?id=-1', '1000px', '90%');
  114. },
  115. // 删除
  116. del: function(data) {
  117. sa.confirm('是否删除,此操作不可撤销', function() {
  118. sa.ajax('/TbTransportFundflowBill/delete?id=' + data.billId, function(res) {
  119. sa.arrayDelete(this.dataList, data);
  120. sa.ok('删除成功');
  121. sa.f5TableHeight(); // 刷新表格高度
  122. }.bind(this))
  123. }.bind(this));
  124. },
  125. // 批量删除
  126. deleteByIds: function() {
  127. // 获取选中元素的id列表
  128. let selection = this.$refs['data-table'].selection;
  129. let ids = sa.getArrayField(selection, 'id');
  130. if(selection.length == 0) {
  131. return sa.msg('请至少选择一条数据')
  132. }
  133. // 提交删除
  134. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  135. sa.ajax('/TbTransportFundflowBill/deleteByIds', {ids: ids.join(',')}, function(res) {
  136. sa.arrayDelete(this.dataList, selection);
  137. sa.ok('删除成功');
  138. sa.f5TableHeight(); // 刷新表格高度
  139. }.bind(this))
  140. }.bind(this));
  141. },
  142. },
  143. created: function() {
  144. this.f5();
  145. sa.onInputEnter();
  146. }
  147. })
  148. </script>
  149. </body>
  150. </html>