组批次修改导出参数判空

This commit is contained in:
wuteng 2025-10-23 13:02:57 +08:00
parent 6fb53f6d7b
commit ce9680f69a

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: '正在导出...'
})