|
|
@@ -376,6 +376,7 @@ const groupKeys = [
|
|
|
{ value: 'adminName', label: '售票员', prop: 'adminName' },
|
|
|
{ value: 'ticketTypeName', label: '票种', prop: 'ticketTypeName' },
|
|
|
{ value: 'payChannel', label: '支付方式' },
|
|
|
+ { value: 'ticketTypeGroupName', label: '票种分组' },
|
|
|
{ value: 'unitPrice', label: '单价', prop: 'unitPrice' },
|
|
|
{ value: 'otaSourceName', label: '销售渠道' },
|
|
|
{ value: 'team', label: '团体' },
|
|
|
@@ -478,7 +479,7 @@ export default {
|
|
|
const orderTagList = res.list.find(v => v.configKey === 'orderTagList')?.configValue || []
|
|
|
this.orderTagList = orderTagList.replace(/\s+/g, '').split(',')
|
|
|
*/
|
|
|
- this.orderTagList = res.list.find(v => v.configKey === 'orderTagList')?.configValue?.replace(/\s+/g, '')?.split(',') || []
|
|
|
+ this.orderTagList = (res.data || []).find(v => v.configKey === 'orderTagList')?.configValue?.replace(/\s+/g, '')?.split(',') || []
|
|
|
},
|
|
|
methods: {
|
|
|
showColumnConfig () {
|