year-statistcs-list.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">
  9. <link rel="stylesheet" href="../../static/sa.css">
  10. <script src="https://unpkg.com/vue@2.6.10/dist/vue.js"></script>
  11. <script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>
  12. <script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
  13. <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>
  14. <script src="https://www.layuicdn.com/layer-v3.1.1/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. <div class="c-item">
  24. <label class="c-label">收费类型:</label>
  25. <el-select v-model="p.feeType" placeholder="请选择" filterable>
  26. <el-option label="-全部-" value=""></el-option>
  27. <el-option label="核酸检测" value="1"></el-option>
  28. <el-option label="消杀作业" value="2"></el-option>
  29. <el-option label="装卸作业" value="3"></el-option>
  30. <el-option label="停车费" value="4"></el-option>
  31. <el-option label="过磅费" value="5"></el-option>
  32. <el-option label="入场管理费" value="6"> </el-option>
  33. <el-option label="充电打冷作业" value="7"> </el-option>
  34. </el-select>
  35. </div>
  36. <div class="c-item">
  37. <label class="c-label">日期:</label>
  38. <el-date-picker type="year" value-format="yyyy" v-model="p.year"></el-date-picker>
  39. </div>
  40. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  41. <br/>
  42. </el-form>
  43. <!-- ------------- 快捷按钮 ------------- -->
  44. <div class="fast-btn">
  45. <el-button size="mini" type="info" @click="sa.f5()">刷新</el-button>
  46. <el-button class="c-btn" type="success" icon="el-icon" @click="print()">打印</el-button>
  47. </div>
  48. <!-- ------------- 数据列表 ------------- -->
  49. <el-table class="data-table" ref="data-table" :data="dataList">
  50. <sa-td type="selection"></sa-td>
  51. <sa-td name="收费项目" prop="feeType" type="enum"
  52. :jv="{1: '核酸检测',2: '消杀作业', 3: '装卸作业', 4: '停车费', 5: '过磅费', 6: '入场管理费', 7: '充电打冷作业'}"></sa-td>
  53. <sa-td name="年份" prop="year"></sa-td>
  54. <sa-td name="数量" prop="num" ></sa-td>
  55. <!-- <sa-td name="含税收入(元)" prop="statisticsMoney"></sa-td>-->
  56. <el-table-column label="含税收入(元)" >
  57. <template slot-scope="s">
  58. <span>{{Number(s.row.taxMoney).toFixed(2)}}</span>
  59. </template>
  60. </el-table-column>
  61. <el-table-column label="税率(%)" >
  62. <template slot-scope="s">
  63. <span>{{s.row.taxRate * 100}}</span>
  64. </template>
  65. </el-table-column>
  66. <!-- <sa-td name="税款(元)" prop="taxes" ></sa-td>-->
  67. <el-table-column label="税款(元)" >
  68. <template slot-scope="s">
  69. <span>{{Number(s.row.taxes).toFixed(2)}}</span>
  70. </template>
  71. </el-table-column>
  72. <!-- <sa-td name="不含税收入(元)" prop="noTaxMoney" ></sa-td>-->
  73. <el-table-column label="不含税收入(元)" >
  74. <template slot-scope="s">
  75. <span>{{Number(s.row.noTaxMoney).toFixed(2)}}</span>
  76. </template>
  77. </el-table-column>
  78. <!-- <el-table-column label="操作" fixed="right" width="240px">-->
  79. <!-- <template slot-scope="s">-->
  80. <!-- <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>-->
  81. <!-- <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>-->
  82. <!-- <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>-->
  83. <!-- </template>-->
  84. <!-- </el-table-column>-->
  85. </el-table>
  86. <!-- ------------- 分页 ------------- -->
  87. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  88. </div>
  89. </div>
  90. <script>
  91. var app = new Vue({
  92. components: {
  93. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  94. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  95. },
  96. el: '.vue-box',
  97. data: {
  98. p: { // 查询参数
  99. id: '', // 主键
  100. feeType: '', // 收费类型(1=核酸检测,2=消杀作业,3=装卸作业,4=停车费,5=过磅费,6=入场管理费)
  101. itemTypeId: '', // 业务类型id
  102. itemTypeName: '', // 业务类型
  103. year: '', // 年份
  104. month: '', // 月份
  105. day: '', // 天
  106. dayTime: '', // 日期
  107. num: '', // 数量
  108. taxMoney: '', // 税款
  109. taxRate: '', // 税率
  110. noTaxMoney: '', // 不含税款
  111. payType: '', // 支付方式(1=微信支付)
  112. pageNo: 1, // 当前页
  113. pageSize: 10, // 页大小
  114. sortType: 0 // 排序方式
  115. },
  116. dataCount: 0,
  117. dataList: [], // 数据集合
  118. },
  119. methods: {
  120. print: function() {
  121. this.$confirm('确定打印符合条件的数据?', '提示', {
  122. confirmButtonText: '确定',
  123. cancelButtonText: '取消',
  124. type: 'warning'
  125. }).then(() => {
  126. var year = this.p.year;
  127. var feeType = this.p.feeType;
  128. sa.showIframe('打印年报表', 'dayStatsPrint.html?year='+year+"&feeType="+feeType+"&isYear=1" , '1000px', '100%');
  129. }).catch(() => {
  130. });
  131. },
  132. // 刷新
  133. f5: function() {
  134. sa.ajax('/TbFeeStatistics/getYear', sa.removeNull(this.p), function(res) {
  135. this.dataList = res.data; // 数据
  136. this.dataCount = res.dataCount; // 数据总数
  137. sa.f5TableHeight(); // 刷新表格高度
  138. }.bind(this));
  139. },
  140. // 查看
  141. get: function(data) {
  142. sa.showIframe('数据详情', 'year-statistcs-info.html?id=' + data.id, '1050px', '90%');
  143. },
  144. // 查看 - 根据选中的
  145. getBySelect: function(data) {
  146. var selection = this.$refs['data-table'].selection;
  147. if(selection.length == 0) {
  148. return sa.msg('请选择一条数据')
  149. }
  150. this.get(selection[0]);
  151. },
  152. },
  153. created: function() {
  154. this.f5();
  155. sa.onInputEnter();
  156. }
  157. })
  158. </script>
  159. </body>
  160. </html>