From fa58f6d2de8a121d429655188fd88da696ebaea7 Mon Sep 17 00:00:00 2001 From: "meilin.huang" <954537473@qq.com> Date: Mon, 3 Jul 2023 21:58:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=97=A0=E6=B3=95=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=88=90=E5=91=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mayfly_go_web/src/views/ops/tag/TeamList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayfly_go_web/src/views/ops/tag/TeamList.vue b/mayfly_go_web/src/views/ops/tag/TeamList.vue index e0aa2610..c6bdd3fd 100755 --- a/mayfly_go_web/src/views/ops/tag/TeamList.vue +++ b/mayfly_go_web/src/views/ops/tag/TeamList.vue @@ -185,7 +185,7 @@ const state = reactive({ addVisible: false, memForm: { accountIds: [] as any, - teamId: 0, + teamId: 0 as any, }, accounts: Array(), }, @@ -313,7 +313,7 @@ const showAddMemberDialog = () => { const addMember = async () => { const memForm = state.showMemDialog.memForm; - memForm.teamId = (state.selectionData[0] as any).id; + memForm.teamId = state.showMemDialog.query.teamId; notBlank(memForm.accountIds, '请先选择账号'); await tagApi.saveTeamMem.request(memForm);