Merge pull request '组批次修改导出参数判空' (#122) from master-dev into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-frontend/pulls/122
This commit is contained in:
wuteng 2025-10-23 13:20:39 +08:00
commit dfe4d9a705

View File

@ -714,6 +714,9 @@ export default {
},
initBatchBillRel(batchNo){
if(!batchNo){
return;
}
this.waitBatchDtlList=[];
listEmisTmsSiteBatchDtl({batchNo: batchNo}).then(response => {
let rows=response.rows;
@ -1316,6 +1319,9 @@ export default {
},
/** 导出按钮操作 */
handleExport() {
if (!this.form.batchNo) {
return;
}
const loadingInstance = this.$loading({
text: '正在导出...'
})