@@ -711,7 +711,14 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(()=> {
- return exportSubItemList(this.queryParams)
+ let queryParams
+ if (this.queryParams.fBsdateList) {
+ queryParams = {
+ ...this.queryParams,
+ dateRange: this.queryParams.fBsdateList[0] + ' 至 ' + this.queryParams.fBsdateList[1]
+ }
+ return exportSubItemList(queryParams)
}).then(res => {
this.download(res.msg)
})