From ce9680f69a123e406f3e011cda9c14acdfcaa006 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Thu, 23 Oct 2025 13:02:57 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E6=89=B9=E6=AC=A1=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=8F=82=E6=95=B0=E5=88=A4=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisTmsSiteBatch/panel/BigBatchEditForm.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/emis/emisTmsSiteBatch/panel/BigBatchEditForm.vue b/src/views/emis/emisTmsSiteBatch/panel/BigBatchEditForm.vue index 525af74b..fa3fbaa0 100644 --- a/src/views/emis/emisTmsSiteBatch/panel/BigBatchEditForm.vue +++ b/src/views/emis/emisTmsSiteBatch/panel/BigBatchEditForm.vue @@ -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: '正在导出...' })