This commit is contained in:
hayu 2026-01-14 11:13:18 +08:00
parent eeb1f403d6
commit af3376b088
1 changed files with 9 additions and 5 deletions

View File

@ -271,11 +271,15 @@
};
const currentTime = formatTime(new Date());
this.download(
"/material/bm_report/exportLeaseOutList",
{keyWord: this.queryParams.keyWord,startTime: this.dateRange && this.dateRange[0],endTime: this.dateRange && this.dateRange[1]},
`领料出库报表_${currentTime}.xlsx`
);
this.download(
"/material/bm_report/exportLeaseOutList",
{
keyWord: this.queryParams.keyWord,
startTime: this.queryParams.startTime,
endTime: this.queryParams.endTime
},
`领料出库报表_${currentTime}.xlsx`
);
},
//
openRecords(row) {