导出修改

This commit is contained in:
dengbw
2023-06-01 11:47:38 +08:00
parent 79afdee6dc
commit 1bc4a9a8f7
4 changed files with 15 additions and 17 deletions
@@ -407,20 +407,6 @@
message: '请上传背景图',
trigger: 'blur'
}
],
channelId: [
{
required: true,
message: '请输入直播频道',
trigger: 'blur'
}
],
dateRange: [
{
required: true,
message: '请选择直播时间',
trigger: 'blur'
}
]
},
// 提交状态
@@ -107,6 +107,7 @@
arrayItem.push(d.label);
});
array.push(arrayItem);
let value = '';
const loading = this.$loading({ lock: true });
this.$refs.table.doRequest(({ where, order }) => {
exportGroupsStatisticsBiz({
@@ -122,7 +123,10 @@
data.forEach((d) => {
let arrayItem = [];
for (let key in d) {
arrayItem.push(d[key]);
value = d[key];
if (value != 'def') {
arrayItem.push(value);
}
}
array.push(arrayItem);
});
@@ -105,6 +105,7 @@
arrayItem.push(d.label);
});
array.push(arrayItem);
let value = '';
const loading = this.$loading({ lock: true });
this.$refs.table.doRequest(({ where, order }) => {
exportGroupsStatisticsConsultant({
@@ -120,7 +121,10 @@
data.forEach((d) => {
let arrayItem = [];
for (let key in d) {
arrayItem.push(d[key]);
value = d[key];
if (value != 'def') {
arrayItem.push(value);
}
}
array.push(arrayItem);
});
@@ -138,6 +138,7 @@
arrayItem.push(d.label);
});
array.push(arrayItem);
let value = '';
const loading = this.$loading({ lock: true });
this.$refs.table.doRequest(({ where, order }) => {
exportGroupsStatisticsCustomer({
@@ -154,7 +155,10 @@
data.forEach((d) => {
let arrayItem = [];
for (let key in d) {
arrayItem.push(d[key]);
value = d[key];
if (value != 'def') {
arrayItem.push(value);
}
}
array.push(arrayItem);
});