tb-fee-statistics-list.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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="enum" name="收费类型" v-model="p.feeType" -->
  24. <!-- :jv="{1: '核酸检测', 3: '装卸作业', 4: '停车费', 5: '过磅费'}" jtype="2" def="不限"></sa-item>-->
  25. <div class="c-item">
  26. <label class="c-label">收费项目:</label>
  27. <el-select v-model="p.feeType" placeholder="请选择" filterable>
  28. <el-option label="-全部-" value=""> </el-option>
  29. <el-option label="核酸检测" value="1"> </el-option>
  30. <el-option label="消杀作业" value="2"> </el-option>
  31. <el-option label="装卸作业" value="3"> </el-option>
  32. <el-option label="停车费" value="4"> </el-option>
  33. <el-option label="过磅费" value="5"> </el-option>
  34. <el-option label="入场管理费" value="6"> </el-option>
  35. <el-option label="充电打冷作业" value="7"> </el-option>
  36. </el-select>
  37. </div>
  38. <!-- <div class="c-item">-->
  39. <!-- <label class="c-label">日期:</label>-->
  40. <!-- <el-date-picker type="date" value-format="yyyy-MM-dd" v-model="p.dayTime"></el-date-picker>-->
  41. <!-- </div>-->
  42. <div class="c-item">
  43. <label class="c-label">日期范围:</label>
  44. <el-date-picker size="mini" v-model="selectDay" type="daterange" unlink-panels="false"
  45. range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期"
  46. format="yyyy 年 MM 月 dd 日" value-format="yyyy-MM-dd">
  47. </el-date-picker>
  48. </div>
  49. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  50. <br />
  51. </el-form>
  52. <!-- ------------- 快捷按钮 ------------- -->
  53. <div class="fast-btn">
  54. <el-button size="mini" type="info" @click="sa.f5()">刷新</el-button>
  55. </div>
  56. <!-- ------------- 数据列表 ------------- -->
  57. <el-table class="data-table" ref="data-table" :data="dataList" >
  58. <sa-td type="selection"></sa-td>
  59. <sa-td name="收费项目" prop="feeType" type="enum"
  60. :jv="{1: '核酸检测',2: '消杀作业', 3: '装卸作业', 4: '停车费', 5: '过磅费', 6: '入场管理费', 7: '充电打冷作业'}"></sa-td>
  61. <!-- <sa-td name="业务类型" prop="itemTypeName" ></sa-td>-->
  62. <sa-td name="日期" type="date" prop="dayTime" ></sa-td>
  63. <sa-td name="数量" prop="num" ></sa-td>
  64. <sa-td name="含税收入(元)" prop="taxMoney" ></sa-td>
  65. <!-- <sa-td name="税率" prop="taxRate" ></sa-td>-->
  66. <el-table-column label="税率(%)" >
  67. <template slot-scope="s">
  68. <span>{{s.row.taxRate * 100}}</span>
  69. </template>
  70. </el-table-column>
  71. <sa-td name="不含税收入(元)" prop="noTaxMoney" ></sa-td>
  72. <sa-td name="支付方式" prop="payType" type="enum" :jv="{3: '微信支付'}"></sa-td>
  73. <!-- <el-table-column label="操作" fixed="right" width="240px">-->
  74. <!-- <template slot-scope="s">-->
  75. <!-- <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>-->
  76. <!-- <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>-->
  77. <!-- <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>-->
  78. <!-- </template>-->
  79. <!-- </el-table-column>-->
  80. </el-table>
  81. <!-- ------------- 分页 ------------- -->
  82. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  83. </div>
  84. </div>
  85. <script>
  86. var app = new Vue({
  87. components: {
  88. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  89. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  90. },
  91. el: '.vue-box',
  92. data: {
  93. p: { // 查询参数
  94. id: '', // 主键
  95. feeType: '', // 收费类型(1=核酸检测,2消杀作业,3=装卸作业,4=停车费,5=过磅费)
  96. feeTypeId: '', // 收费类型id
  97. feeTypeName: '', // 收费类型
  98. itemTypeId: '', // 业务类型id
  99. itemTypeName: '', // 业务类型
  100. year: '', // 年份
  101. month: '', // 月份
  102. dayTime: '', // 日期
  103. num: '', // 数量
  104. taxMoney: '', // 税款
  105. taxRate: '', // 税率
  106. noTaxMoney: '', // 不含税款
  107. payType: '', // 支付方式(1=微信支付)
  108. pageNo: 1, // 当前页
  109. pageSize: 10, // 页大小
  110. sortType: 9 // 排序方式
  111. },
  112. dataCount: 0,
  113. dataList: [], // 数据集合
  114. selectDay:[],
  115. selectDayRange: {
  116. beginDay: '', //查询开始时间
  117. endDay: '', //查询结束时间
  118. },
  119. },
  120. methods: {
  121. // 刷新
  122. f5: function() {
  123. if ( this.selectDay != null && this.selectDay.length != 0) {
  124. this.selectDayRange.beginDay = this.selectDay[0];
  125. this.selectDayRange.endDay = this.selectDay[1];
  126. }
  127. console.log(this.selectDayRange.beginDay);
  128. console.log(this.selectDayRange.endDay);
  129. sa.ajax('/TbFeeStatistics/getList?beginDay='+this.selectDayRange.beginDay+"&endDay="+this.selectDayRange.endDay,
  130. sa.removeNull(this.p), function(res) {
  131. this.dataList = res.data; // 数据
  132. this.dataCount = res.dataCount; // 数据总数
  133. sa.f5TableHeight(); // 刷新表格高度
  134. }.bind(this));
  135. },
  136. // 查看
  137. get: function(data) {
  138. sa.showIframe('数据详情', 'tb-fee-statistics-info.html?id=' + data.id, '1050px', '90%');
  139. },
  140. // 查看 - 根据选中的
  141. getBySelect: function(data) {
  142. var selection = this.$refs['data-table'].selection;
  143. if(selection.length == 0) {
  144. return sa.msg('请选择一条数据')
  145. }
  146. this.get(selection[0]);
  147. },
  148. },
  149. created: function() {
  150. this.f5();
  151. sa.onInputEnter();
  152. }
  153. })
  154. </script>
  155. </body>
  156. </html>