[参数项列表] 导出

This commit is contained in:
zhaomeijing
2022-04-29 15:45:42 +08:00
parent a22ead8112
commit dfa4da7c8b
@@ -191,14 +191,19 @@ export default {
// },
//导出
handleExport() {
let query = {
let _tt = {
pageNo: this.pageNo,
pageSize: this.pageSize,
paramsTemplateId: this.$route.query.id,
...this.queryParam,
ids: this.selectedRowKeys.join(',')
ids: this.selectedRowKeys.join(','),
// exportName: '参数项列表.xlsx'
}
postAction('params/paramsInfo/exportParamsInfoZip', {exportName: '参数项列表.xlsx',...query}, this.Deselect)
let _xx = JSON.stringify(_tt)
let _yy = {
paramsInfoVO : _xx
}
downloadFile('document/bussDocumentLibraryEO/exportExcel', '参数项列表.xlsx', _yy, this.Deselect)
},
//下载模板
handleModule() {