ticketDailyReport.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <div class="app-container">
  3. <el-row :gutter="20">
  4. <!--用户数据-->
  5. <el-col :span="24" :xs="24">
  6. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
  7. <el-form-item label="时间" prop="time" label-width="40px">
  8. <el-date-picker
  9. v-model="queryParams.time"
  10. type="daterange"
  11. range-separator="至"
  12. start-placeholder="开始日期"
  13. value-format="yyyy-MM-dd"
  14. end-placeholder="结束日期">
  15. </el-date-picker>
  16. </el-form-item>
  17. <el-form-item label="订单来源" prop="ticketOrderSource">
  18. <el-select v-model="queryParams.ticketOrderSource" clearable placeholder="请选择订单来源">
  19. <el-option
  20. v-for="dict in dict.type.ticket_order_source"
  21. :key="dict.value"
  22. :label="dict.label"
  23. :value="dict.value">
  24. </el-option>
  25. </el-select>
  26. </el-form-item>
  27. <el-form-item>
  28. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  29. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  30. </el-form-item>
  31. </el-form>
  32. <el-row :gutter="10" class="mb8">
  33. <el-col :span="1.5">
  34. <el-button
  35. type="warning"
  36. plain
  37. icon="el-icon-download"
  38. size="mini"
  39. @click="handleExport"
  40. v-hasPermi="configPermi.export"
  41. >导出</el-button>
  42. </el-col>
  43. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
  44. </el-row>
  45. <el-table v-loading="loading" border :data="tableList" :span-method="objectSpanMethod" @selection-change="handleSelectionChange">
  46. <el-table-column label="日期报表" align="center" key="reportDate" prop="reportDate" v-if="columns[0].visible" :show-overflow-tooltip="true" />
  47. <el-table-column label="订单来源" align="center" key="ticketOrderSourceName" prop="ticketOrderSourceName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
  48. <el-table-column label="订单张数(张)" align="center" key="orderBuyNum" prop="orderBuyNum" v-if="columns[2].visible" :show-overflow-tooltip="true" />
  49. <el-table-column label="订单人数(人)" align="center" key="totalPeopleNum" prop="totalPeopleNum" v-if="columns[3].visible" :show-overflow-tooltip="true" />
  50. <el-table-column label="销售金额(元)" align="center" key="orderPrice" prop="orderPrice" v-if="columns[4].visible" :show-overflow-tooltip="true" />
  51. <el-table-column label="验票金额(元)" align="center" key="usePrice" prop="usePrice" v-if="columns[5].visible" :show-overflow-tooltip="true" />
  52. <el-table-column label="退票人数(人)" align="center" key="backPeopleNum" prop="backPeopleNum" v-if="columns[6].visible" :show-overflow-tooltip="true" />
  53. <el-table-column label="退票金额(元)" align="center" key="backPrice" prop="backPrice" v-if="columns[7].visible" :show-overflow-tooltip="true" />
  54. <el-table-column label="实际销售金额(元)" align="center" key="realOrderPrice" prop="realOrderPrice" v-if="columns[8].visible" :show-overflow-tooltip="true" />
  55. </el-table>
  56. <pagination
  57. v-show="total>0"
  58. :total="total"
  59. :page.sync="queryParams.pageNum"
  60. :limit.sync="queryParams.pageSize"
  61. @pagination="getList"
  62. />
  63. </el-col>
  64. </el-row>
  65. </div>
  66. </template>
  67. <script>
  68. import {
  69. listTableApi,
  70. delTableParamsApi,
  71. addTableApi
  72. } from "@/api/CURD";
  73. import moment from "moment";
  74. export default {
  75. name: "ticketDailyReport",
  76. dicts: ['ticket_order_source'],
  77. data() {
  78. return {
  79. title: "票务日报表",// 通用标题
  80. configPermi: {
  81. export: ['statisticalReports:ticketDailyReport:export'],// 导出权限
  82. },
  83. configUrl: {
  84. list: '/merchant/reportTicket/daily', // 列表地址
  85. delect: '', // 删除地址
  86. upload: '',// 导入地址
  87. download:'', // 下载模板地址
  88. export: '/merchant/reportTicket/exportDailyXls',// 导出地址
  89. edit: '', // 编辑地址
  90. },
  91. // 遮罩层
  92. loading: true,
  93. // 选中数组
  94. ids: [],
  95. // 非单个禁用
  96. single: true,
  97. // 非多个禁用
  98. multiple: true,
  99. // 显示搜索条件
  100. showSearch: true,
  101. // 总条数
  102. total: 0,
  103. // 用户表格数据
  104. tableList: [],
  105. // 查询参数
  106. queryParams: {
  107. pageNum: 1,
  108. pageSize: 10,
  109. },
  110. dateRange: [],
  111. // 控制列表是否显示
  112. columns: [
  113. { key: 0, label: `日期报表`, visible: true },
  114. { key: 1, label: `订单来源`, visible: true },
  115. { key: 2, label: `订单张数(张)`, visible: true },
  116. { key: 3, label: `订单人数(人)`, visible: true },
  117. { key: 4, label: `销售金额(元)`, visible: true },
  118. { key: 6, label: `验票金额(元)`, visible: true },
  119. { key: 7, label: `退票人数(人)`, visible: true },
  120. { key: 8, label: `退票金额(元)`, visible: true },
  121. { key: 9.5, label: `实际销售金额(元)`, visible: true },
  122. ],
  123. mergeObj: {}, // 用来记录需要合并行的下标
  124. mergeArr: ['reportDate'] // 表格中的列名
  125. };
  126. },
  127. created() {
  128. this.$set(this.queryParams,'time',[moment().format('yyyy-MM-DD'),moment().format('yyyy-MM-DD')])
  129. this.getList();
  130. },
  131. methods: {
  132. // 默认接受四个值 { 当前行的值, 当前列的值, 行的下标, 列的下标 }
  133. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  134. // 判断列的属性
  135. if(this.mergeArr.indexOf(column.property) !== -1) {
  136. // 判断其值是不是为0
  137. if(this.mergeObj[column.property][rowIndex]) {
  138. return [this.mergeObj[column.property][rowIndex], 1]
  139. } else {
  140. // 如果为0则为需要合并的行
  141. return [0, 0];
  142. }
  143. }
  144. },
  145. // getSpanArr方法
  146. getSpanArr(data) {
  147. this.mergeArr.forEach((key, index1) => {
  148. let count = 0; // 用来记录需要合并行的起始位置
  149. this.mergeObj[key] = []; // 记录每一列的合并信息
  150. data.forEach((item, index) => {
  151. // index == 0表示数据为第一行,直接 push 一个 1
  152. if(index === 0) {
  153. this.mergeObj[key].push(1);
  154. } else {
  155. // 判断当前行是否与上一行其值相等 如果相等 在 count 记录的位置其值 +1 表示当前行需要合并 并push 一个 0 作为占位
  156. if(item[key] === data[index - 1][key]) {
  157. this.mergeObj[key][count] += 1;
  158. this.mergeObj[key].push(0);
  159. } else {
  160. // 如果当前行和上一行其值不相等
  161. count = index; // 记录当前位置
  162. this.mergeObj[key].push(1); // 重新push 一个 1
  163. }
  164. }
  165. })
  166. })
  167. },
  168. /** 查询用户列表 */
  169. getList() {
  170. if(!this.queryParams.time || this.queryParams.time.length == 0){
  171. this.$modal.msgError(`请选择时间!!!`);
  172. this.tableList = []
  173. this.total = 0
  174. return
  175. }
  176. this.loading = true;
  177. let params = JSON.parse(JSON.stringify({
  178. ...this.queryParams,
  179. beginTime: this.queryParams.time&&this.queryParams.time[0]?this.queryParams.time[0]:null,
  180. endTime: this.queryParams.time&&this.queryParams.time[1]?this.queryParams.time[1]:null,
  181. ticketOrderSource: this.queryParams.ticketOrderSource ? this.queryParams.ticketOrderSource.join(','):''
  182. }))
  183. delete params.time;
  184. listTableApi(
  185. this.configUrl.list,
  186. this.addDateRange(
  187. params,
  188. this.dateRange)).then(response => {
  189. this.tableList = response.rows;
  190. this.getSpanArr(this.tableList)
  191. this.total = response.total;
  192. this.loading = false;
  193. }
  194. ).catch (error=>{
  195. console.error('获取列表失败!!!!',error)
  196. this.tableList = [];
  197. this.total = 0;
  198. this.loading = false
  199. })
  200. },
  201. /** 搜索按钮操作 */
  202. handleQuery() {
  203. this.queryParams.pageNum = 1;
  204. this.getList();
  205. },
  206. /** 重置按钮操作 */
  207. resetQuery() {
  208. this.dateRange = [];
  209. this.queryParams = {
  210. pageNum: 1,
  211. pageSize: 10,
  212. }
  213. this.handleQuery();
  214. },
  215. // 多选框选中数据
  216. handleSelectionChange(selection) {
  217. this.ids = selection.map(item => item.id);
  218. this.single = selection.length != 1;
  219. this.multiple = !selection.length;
  220. },
  221. /** 新增按钮操作 */
  222. handleAdd() {
  223. if(this.$refs.addAndEdit) {
  224. this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
  225. }
  226. },
  227. /** 修改按钮操作 */
  228. handleUpdate(row) {
  229. if(this.$refs.addAndEdit) {
  230. this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
  231. }
  232. },
  233. handleDetails(row){
  234. if(this.$refs.detailsBox) {
  235. this.$refs.detailsBox.initData(this.title + '详情',"DEATILSInit", row)
  236. }
  237. },
  238. /** 删除按钮操作 */
  239. handleDelete(row) {
  240. const ids = row.id || this.ids;
  241. this.$modal.confirm('是否确认删除数据项?').then( () => {
  242. return delTableParamsApi(this.configUrl.delect,{
  243. id: ids
  244. });
  245. }).then(() => {
  246. this.getList();
  247. this.$modal.msgSuccess("删除成功");
  248. }).catch((e) => {
  249. console.error("删除失败====",e)
  250. });
  251. },
  252. /** 导出按钮操作 */
  253. handleExport() {
  254. if(!this.queryParams.time || this.queryParams.time.length == 0){
  255. this.$modal.msgError(`请选择时间!!!`);
  256. return
  257. }
  258. let params = JSON.parse(JSON.stringify({
  259. ...this.queryParams,
  260. beginTime: this.queryParams.time&&this.queryParams.time[0]?this.queryParams.time[0]:null,
  261. endTime: this.queryParams.time&&this.queryParams.time[1]?this.queryParams.time[1]:null,
  262. ticketOrderSource: this.queryParams.ticketOrderSource ? this.queryParams.ticketOrderSource.join(','):''
  263. }))
  264. delete params.time;
  265. delete params.pageNum
  266. delete params.pageSize
  267. this.downloadGet(this.configUrl.export, {
  268. ...params
  269. }, `${this.title }_${new Date().getTime()}.xlsx`)
  270. },
  271. /** 导入按钮操作 */
  272. handleImport() {
  273. if(this.$refs.upload) {
  274. this.$refs.upload.initData({
  275. width: '400px',
  276. // 弹出层标题(用户导入)
  277. title: this.title + "导入",
  278. // 下载模板地址
  279. importTemplate: this.configUrl.download,
  280. // 上传的地址
  281. url: this.configUrl.upload
  282. })
  283. }
  284. },
  285. /** 开/闭 园 */
  286. openAttraction(row) {
  287. console.log("row======",row)
  288. this.$modal.confirm(`是否确认${row.status == 2 ? '关闭' : '打开'} ${row.name}景点吗?`).then( () => {
  289. return addTableApi(this.configUrl.edit,{
  290. ...row,
  291. status: row.status == 1 ? 2 : 1
  292. });
  293. }).then(() => {
  294. this.getList();
  295. this.$modal.msgSuccess(`${row.status == 1 ? '打开' : '关闭'}成功`);
  296. }).catch((e) => {
  297. console.error("失败====",e)
  298. });
  299. },
  300. }
  301. };
  302. </script>