|
@@ -334,7 +334,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
try {
|
|
try {
|
|
- let res = await v2EnginOrderHomeCountList(params)
|
|
|
|
|
|
+ const res = await v2EnginOrderHomeCountList(params)
|
|
this.numSum.totalC = res.data.totalC
|
|
this.numSum.totalC = res.data.totalC
|
|
this.numSum.amountC = res.data.amountC
|
|
this.numSum.amountC = res.data.amountC
|
|
this.numSum.totalEC = res.data.totalEC
|
|
this.numSum.totalEC = res.data.totalEC
|
|
@@ -345,7 +345,15 @@ export default {
|
|
return v2EnginOrderHomeList(params)
|
|
return v2EnginOrderHomeList(params)
|
|
},
|
|
},
|
|
// 列表导出函数
|
|
// 列表导出函数
|
|
- exportList: v2EnginOrderHomeListExport,
|
|
|
|
|
|
+ exportList(...p) {
|
|
|
|
+ if (this.orderStatusParam !== '') {
|
|
|
|
+ p[0] = {
|
|
|
|
+ ...p[0],
|
|
|
|
+ params: [{ param: 'a.examine_status', compare: '=', value: this.orderStatusParam }, ...p[0].params]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return v2EnginOrderHomeListExport(...p)
|
|
|
|
+ },
|
|
// 表格列解析渲染数据更改
|
|
// 表格列解析渲染数据更改
|
|
columnParsing(item, defaultData) {
|
|
columnParsing(item, defaultData) {
|
|
// console.log(item)
|
|
// console.log(item)
|