完善单据列表

This commit is contained in:
季圣华
2023-08-18 19:52:11 +08:00
parent cc8f65b5ab
commit 5d71acc886

View File

@@ -127,7 +127,7 @@ export const BillListMixin = {
if (res && res.code === 200) { if (res && res.code === 200) {
if(res.data.platformValue) { if(res.data.platformValue) {
this.isShowExcel = true this.isShowExcel = true
this.billExcelUrl = res.data.platformValue + '?no=' this.billExcelUrl = res.data.platformValue
} }
} }
}) })
@@ -207,7 +207,8 @@ export const BillListMixin = {
}, },
//导出单据 //导出单据
handleExport() { handleExport() {
this.$refs.billExcelIframe.show(this.model, this.billExcelUrl, 150) let search = this.getQueryParams().search
this.$refs.billExcelIframe.show(this.model, this.billExcelUrl + '?search=' + search, 150)
this.$refs.billExcelIframe.title = "确认导出" this.$refs.billExcelIframe.title = "确认导出"
} }
} }