导出问题修复
This commit is contained in:
parent
cc7a72af9b
commit
89888e33de
|
|
@ -488,7 +488,7 @@ export default {
|
||||||
};
|
};
|
||||||
|
|
||||||
const currentTime = formatTime(new Date());
|
const currentTime = formatTime(new Date());
|
||||||
const params = this.rowData
|
const params = {params: JSON.stringify([this.rowData])}
|
||||||
this.download(
|
this.download(
|
||||||
'material/slt_agreement_info/exportLease',
|
'material/slt_agreement_info/exportLease',
|
||||||
{...params,},
|
{...params,},
|
||||||
|
|
@ -508,7 +508,7 @@ export default {
|
||||||
};
|
};
|
||||||
|
|
||||||
const currentTime = formatTime(new Date());
|
const currentTime = formatTime(new Date());
|
||||||
const params = this.rowData
|
const params = {params: JSON.stringify([this.rowData])}
|
||||||
this.download(
|
this.download(
|
||||||
'material/slt_agreement_info/exportLose',
|
'material/slt_agreement_info/exportLose',
|
||||||
{...params,},
|
{...params,},
|
||||||
|
|
@ -528,7 +528,7 @@ export default {
|
||||||
};
|
};
|
||||||
|
|
||||||
const currentTime = formatTime(new Date());
|
const currentTime = formatTime(new Date());
|
||||||
const params = this.rowData
|
const params = {params: JSON.stringify([this.rowData])}
|
||||||
this.download(
|
this.download(
|
||||||
'material/slt_agreement_info/exportRepair',
|
'material/slt_agreement_info/exportRepair',
|
||||||
{...params,},
|
{...params,},
|
||||||
|
|
@ -548,7 +548,7 @@ export default {
|
||||||
};
|
};
|
||||||
|
|
||||||
const currentTime = formatTime(new Date());
|
const currentTime = formatTime(new Date());
|
||||||
const params = this.rowData
|
const params = {params: JSON.stringify([this.rowData])}
|
||||||
this.download(
|
this.download(
|
||||||
'material/slt_agreement_info/exportScrap',
|
'material/slt_agreement_info/exportScrap',
|
||||||
{...params,},
|
{...params,},
|
||||||
|
|
@ -573,7 +573,7 @@ export default {
|
||||||
};
|
};
|
||||||
|
|
||||||
const currentTime = formatTime(new Date());
|
const currentTime = formatTime(new Date());
|
||||||
const params = this.rowData
|
const params = {params: JSON.stringify([this.rowData])}
|
||||||
this.download(
|
this.download(
|
||||||
'material/slt_agreement_info/exportLose',
|
'material/slt_agreement_info/exportLose',
|
||||||
{...params,},
|
{...params,},
|
||||||
|
|
@ -592,7 +592,7 @@ export default {
|
||||||
};
|
};
|
||||||
|
|
||||||
const currentTime = formatTime(new Date());
|
const currentTime = formatTime(new Date());
|
||||||
const params = this.rowData
|
const params = {params: JSON.stringify([this.rowData])}
|
||||||
this.download(
|
this.download(
|
||||||
'material/slt_agreement_info/exportReduction',
|
'material/slt_agreement_info/exportReduction',
|
||||||
{...params,},
|
{...params,},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue