month-statistcs-list.html 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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. <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="month" value-format="yyyy-MM" v-model="p.month"></el-date-picker>-->
  39. <!-- </div>-->
  40. <div class="c-item">
  41. <label class="c-label">日期范围:</label>
  42. <el-date-picker size="mini" v-model="selectMonth" type="monthrange" unlink-panels="false"
  43. range-separator="至" start-placeholder="开始月份" end-placeholder="结束月份"
  44. format="yyyy 年 MM 月" value-format="yyyy-MM">
  45. </el-date-picker>
  46. </div>
  47. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  48. <br/>
  49. </el-form>
  50. <!-- ------------- 快捷按钮 ------------- -->
  51. <div class="fast-btn">
  52. <el-button size="mini" type="info" @click="sa.f5()">刷新</el-button>
  53. <el-button type="warning" >导出(月统计)</el-button>
  54. <el-button type="warning" @click="exportFn()">导出(月报表)</el-button>
  55. <el-button class="c-btn" type="success" icon="el-icon" @click="print()">打印(月报表)</el-button>
  56. </div>
  57. <!-- ------------- 数据列表 ------------- -->
  58. <el-table class="data-table" ref="data-table" :data="dataList">
  59. <sa-td type="selection"></sa-td>
  60. <sa-td name="收费项目" prop="feeType" type="enum"
  61. :jv="{1: '核酸检测',2: '消杀作业', 3: '装卸作业', 4: '停车费', 5: '过磅费', 6: '入场管理费', 7: '充电打冷作业'}"></sa-td>
  62. <sa-td name="月份" prop="month" ></sa-td>
  63. <sa-td name="数量" prop="num" ></sa-td>
  64. <!-- <sa-td name="含税收入(元)" prop="statisticsMoney"></sa-td>-->
  65. <el-table-column label="含税收入(元)" >
  66. <template slot-scope="s">
  67. <span>{{Number(s.row.taxMoney).toFixed(2)}}</span>
  68. </template>
  69. </el-table-column>
  70. <el-table-column label="税率(%)" >
  71. <template slot-scope="s">
  72. <span>{{s.row.taxRate * 100}}</span>
  73. </template>
  74. </el-table-column>
  75. <!-- <sa-td name="税款(元)" prop="taxes" ></sa-td>-->
  76. <el-table-column label="税款(元)" >
  77. <template slot-scope="s">
  78. <span>{{Number(s.row.taxes).toFixed(2)}}</span>
  79. </template>
  80. </el-table-column>
  81. <!-- <sa-td name="不含税收入(元)" prop="noTaxMoney" ></sa-td>-->
  82. <el-table-column label="不含税收入(元)" >
  83. <template slot-scope="s">
  84. <span>{{Number(s.row.noTaxMoney).toFixed(2)}}</span>
  85. </template>
  86. </el-table-column>
  87. <!-- <el-table-column label="操作" fixed="right" width="240px">-->
  88. <!-- <template slot-scope="s">-->
  89. <!-- <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>-->
  90. <!-- <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>-->
  91. <!-- <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>-->
  92. <!-- </template>-->
  93. <!-- </el-table-column>-->
  94. </el-table>
  95. <!-- ------------- 分页 ------------- -->
  96. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  97. </div>
  98. <el-dialog title="提示" :visible.sync="emodel.visible" width="38%">
  99. <!-- 日期选择器 -->
  100. <div class="c-item">
  101. <label class="c-label">月份:</label>
  102. <el-date-picker type="month" value-format="yyyy-MM" v-model="emodel.form.exportMonth" placeholder="选择月份" ></el-date-picker>
  103. </div>
  104. <span slot="footer" class="dialog-footer">
  105. <el-button @click="emodel.visible = false">取 消</el-button>
  106. <el-button type="primary" @click="sureExport">确 定</el-button>
  107. </span>
  108. </el-dialog>
  109. </div>
  110. <script>
  111. var app = new Vue({
  112. components: {
  113. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  114. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  115. },
  116. el: '.vue-box',
  117. data: {
  118. p: { // 查询参数
  119. id: '', // 主键
  120. feeType: '', // 收费类型(1=核酸检测,2=消杀作业,3=装卸作业,4=停车费,5=过磅费,6=入场管理费)
  121. itemTypeId: '', // 业务类型id
  122. itemTypeName: '', // 业务类型
  123. year: '', // 年份
  124. month: '', // 月份
  125. day: '', // 天
  126. dayTime: '', // 日期
  127. num: '', // 数量
  128. taxMoney: '', // 税款
  129. taxRate: '', // 税率
  130. noTaxMoney: '', // 不含税款
  131. payType: '', // 支付方式(1=微信支付)
  132. pageNo: 1, // 当前页
  133. pageSize: 10, // 页大小
  134. sortType: 0 // 排序方式
  135. },
  136. dataCount: 0,
  137. dataList: [], // 数据集合
  138. selectMonth:[],
  139. selectMonthRange: {
  140. beginMonth: '', //查询开始时间
  141. endMonth: '', //查询结束时间
  142. },
  143. emodel: {
  144. visible: false,
  145. form: {
  146. exportMonth: '', //导出月份
  147. }
  148. },
  149. },
  150. methods: {
  151. print: function() {
  152. this.$confirm('确定打印符合条件的数据?', '提示', {
  153. confirmButtonText: '确定',
  154. cancelButtonText: '取消',
  155. type: 'warning'
  156. }).then(() => {
  157. if ( this.selectMonth != null && this.selectMonth.length != 0) {
  158. this.selectMonthRange.beginMonth = this.selectMonth[0];
  159. this.selectMonthRange.endMonth = this.selectMonth[1];
  160. }
  161. var beginMonth = this.selectMonthRange.beginMonth;
  162. var endMonth = this.selectMonthRange.endMonth;
  163. var feeType = this.p.feeType;
  164. sa.showIframe('打印月报表', 'dayStatsPrint.html?beginMonth='+beginMonth+"&endMonth="+endMonth+"&feeType="+feeType+"&isMonth=1" , '1000px', '100%');
  165. }).catch(() => {
  166. });
  167. },
  168. exportFn() {
  169. Object.assign(this.emodel, {
  170. visible: true,
  171. })
  172. },
  173. sureExport() {
  174. if (this.emodel.form.exportMonth == '') {
  175. sa.msg("请选择月份");
  176. return;
  177. }
  178. sa.ajax('/TbFeeStatistics/export/monthStatistics', this.emodel.form, function(resp) {
  179. window.open(resp.data);
  180. this.emodel.visible = false;
  181. }.bind(this));
  182. },
  183. // 刷新
  184. f5: function() {
  185. if ( this.selectMonth != null && this.selectMonth.length != 0) {
  186. this.selectMonthRange.beginMonth = this.selectMonth[0];
  187. this.selectMonthRange.endMonth = this.selectMonth[1];
  188. }
  189. sa.ajax('/TbFeeStatistics/getMonth?beginMonth='+this.selectMonthRange.beginMonth+"&endMonth="+this.selectMonthRange.endMonth,
  190. sa.removeNull(this.p), function(res) {
  191. this.dataList = res.data; // 数据
  192. this.dataCount = res.dataCount; // 数据总数
  193. sa.f5TableHeight(); // 刷新表格高度
  194. }.bind(this));
  195. },
  196. // 查看
  197. get: function(data) {
  198. sa.showIframe('数据详情', 'month-statistcs-info.html?id=' + data.id, '1050px', '90%');
  199. },
  200. // 查看 - 根据选中的
  201. getBySelect: function(data) {
  202. var selection = this.$refs['data-table'].selection;
  203. if(selection.length == 0) {
  204. return sa.msg('请选择一条数据')
  205. }
  206. this.get(selection[0]);
  207. },
  208. },
  209. created: function() {
  210. this.f5();
  211. sa.onInputEnter();
  212. }
  213. })
  214. </script>
  215. </body>
  216. </html>