From 3fa1f5112d14e71c63f04abc9f3d90105c6629e2 Mon Sep 17 00:00:00 2001 From: zhouz <> Date: Wed, 23 Jul 2025 15:51:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=85=A5=E5=BA=93=E6=96=B0=E5=A2=9EBUG?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nladmin-ui/src/views/wms/basedata/structattr/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nladmin-ui/src/views/wms/basedata/structattr/index.vue b/nladmin-ui/src/views/wms/basedata/structattr/index.vue index 8bb4f7d..7fd44d2 100644 --- a/nladmin-ui/src/views/wms/basedata/structattr/index.vue +++ b/nladmin-ui/src/views/wms/basedata/structattr/index.vue @@ -490,15 +490,15 @@ export default { sectQueryChange(val) { if (val.length === 1) { this.query.stor_id = val[0] - this.query.sect_id = '' + this.query.sect_code = '' } if (val.length === 0) { - this.query.sect_id = '' + this.query.sect_code = '' this.query.stor_id = '' } if (val.length === 2) { this.query.stor_id = val[0] - this.query.sect_id = val[1] + this.query.sect_code = val[1] } this.crud.toQuery() },