|
@@ -194,25 +194,36 @@ export default {
|
|
|
|
|
|
// 列表导出函数
|
|
// 列表导出函数
|
|
exportList(...p) {
|
|
exportList(...p) {
|
|
|
|
+ console.log(p)
|
|
if (this.radioType === '政策零售订单') {
|
|
if (this.radioType === '政策零售订单') {
|
|
- return retailExecPolicyListV2Export()
|
|
|
|
|
|
+ let params = {
|
|
|
|
+ ...p[0],
|
|
|
|
+ moduleId: this.setModuleId
|
|
|
|
+ }
|
|
|
|
+ return retailExecPolicyListV2Export(params, p[1])
|
|
}
|
|
}
|
|
if (this.radioType === '零售订单') {
|
|
if (this.radioType === '零售订单') {
|
|
- return retailExecRetailV2Export()
|
|
|
|
|
|
+ let params = {
|
|
|
|
+ ...p[0],
|
|
|
|
+ moduleId: this.setModuleId
|
|
|
|
+ }
|
|
|
|
+ return retailExecRetailV2Export(params, p[1])
|
|
}
|
|
}
|
|
if (this.radioType === '家用工程订单') {
|
|
if (this.radioType === '家用工程订单') {
|
|
let params = {
|
|
let params = {
|
|
...p[0],
|
|
...p[0],
|
|
- enginOrderType: 'HOME'
|
|
|
|
|
|
+ enginOrderType: 'HOME',
|
|
|
|
+ moduleId: this.setModuleId
|
|
}
|
|
}
|
|
- return retailExecEnginListV2Export(params)
|
|
|
|
|
|
+ return retailExecEnginListV2Export(params, p[1])
|
|
}
|
|
}
|
|
if (this.radioType === '商用工程订单') {
|
|
if (this.radioType === '商用工程订单') {
|
|
let params = {
|
|
let params = {
|
|
...p[0],
|
|
...p[0],
|
|
- enginOrderType: 'TRADE'
|
|
|
|
|
|
+ enginOrderType: 'TRADE',
|
|
|
|
+ moduleId: this.setModuleId
|
|
}
|
|
}
|
|
- return retailExecEnginListV2Export(params)
|
|
|
|
|
|
+ return retailExecEnginListV2Export(params, p[1])
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 表格列解析渲染数据更改
|
|
// 表格列解析渲染数据更改
|