|
@@ -229,7 +229,7 @@ export default {
|
|
|
},
|
|
|
async getList() {
|
|
|
const datas = {
|
|
|
- ...this.filter,
|
|
|
+ ...this.form,
|
|
|
pageNumber: this.currentPage,
|
|
|
pageSize: this.pageSize,
|
|
|
};
|
|
@@ -266,7 +266,7 @@ export default {
|
|
|
async toExport() {
|
|
|
this.isDownload = true;
|
|
|
const res = await downloadBlob(() => {
|
|
|
- return downloadProgressResult(this.filter);
|
|
|
+ return downloadProgressResult(this.form);
|
|
|
}, `进度查询结果-${Date.now()}.xlsx`).catch(() => {});
|
|
|
|
|
|
this.isDownload = false;
|