From 72cf172b193da02fe22418ffbd5adca3481ca6b8 Mon Sep 17 00:00:00 2001 From: hayu <1604366271@qq.com> Date: Fri, 1 Aug 2025 10:31:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/material/materialStation/authorize/index.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/material/materialStation/authorize/index.vue b/src/views/material/materialStation/authorize/index.vue index 58e1d7f0..2c96cad7 100644 --- a/src/views/material/materialStation/authorize/index.vue +++ b/src/views/material/materialStation/authorize/index.vue @@ -734,7 +734,7 @@ export default { this.isBatchMode = false this.dialogTitle = '新增授权' this.resetAuthForm() - this.getTeamList() + this.getTeamList(row.externalId) // 初始化领料人数据 this.materialReceivers = [ @@ -819,9 +819,9 @@ export default { } }, // 获取班组列表 - getTeamList() { + getTeamList(externalId) { const params = { - externalId: null + externalId: externalId } getTeamList(params).then(response => { this.teamList = response.data @@ -1007,7 +1007,7 @@ export default { this.isEditMode = true this.isBatchMode = false this.dialogTitle = '编辑授权' - this.getTeamList() + this.getTeamList(row.externalId) // 重置表单状态 this.resetAuthForm()