|
|
@@ -163,6 +163,7 @@ export default {
|
|
|
checkTimeEnd: new Date(moment().endOf('day').format('YYYY-MM-DD HH:mm:ss')),
|
|
|
ticketTypeIdList: [], //
|
|
|
sourceList: [],
|
|
|
+ groupByList: [],
|
|
|
pageNum: 1,
|
|
|
pageSize: 10
|
|
|
},
|
|
|
@@ -175,7 +176,7 @@ export default {
|
|
|
{ prop: 'checkPrice', label: '检票金额', values: 'checkPrice' },
|
|
|
{ prop: 'orderDateDay', label: '统计日期', values: 'orderDateDay' }
|
|
|
],
|
|
|
- selectKeys: [''], // 默认选中
|
|
|
+ selectKeys: [], // 默认选中
|
|
|
tableIndex: 1,
|
|
|
OrderIndexArr: [],
|
|
|
tableData: [],
|
|
|
@@ -238,13 +239,13 @@ export default {
|
|
|
|
|
|
if (this.selectKeys.length === 0) {
|
|
|
this.finalGroup = [
|
|
|
- { prop: 'otaSourceName', label: '订单渠道', values: 'otaSourceName' },
|
|
|
- { prop: 'ticketTypeName', label: '票种名称', values: 'ticketTypeName' },
|
|
|
- { prop: 'unitPrice', label: '单价', values: 'unitPrice' },
|
|
|
- { prop: 'checkCount', label: '检票数量', values: 'checkCount' },
|
|
|
- { prop: 'checkNum', label: '检票人数', values: 'checkNum' },
|
|
|
- { prop: 'checkPrice', label: '检票金额', values: 'checkPrice' },
|
|
|
- { prop: 'orderDateDay', label: '统计日期', values: 'orderDateDay' }
|
|
|
+ // { prop: 'otaSourceName', label: '订单渠道' },
|
|
|
+ // { prop: 'ticketTypeName', label: '票种名称' },
|
|
|
+ // { prop: 'unitPrice', label: '单价' },
|
|
|
+ // { prop: 'checkCount', label: '检票数量' },
|
|
|
+ // { prop: 'checkNum', label: '检票人数' },
|
|
|
+ // { prop: 'checkPrice', label: '检票金额' },
|
|
|
+ // { prop: 'orderDateDay', label: '统计日期' }
|
|
|
]
|
|
|
} else {
|
|
|
this.finalGroup = [...this.finalGroup].sort((a, b) =>
|
|
|
@@ -268,6 +269,8 @@ export default {
|
|
|
this.form.ticketTypeIdList = []
|
|
|
}
|
|
|
|
|
|
+ this.form.groupByList = [...this.selectKeys] || []
|
|
|
+
|
|
|
getCheckerVerifyStatistics(this.form).then(res => {
|
|
|
this.tableData = res.data
|
|
|
}).finally(() => {
|