From 63c7ae253840a6f56de97b4537e3f110c8348581 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Sat, 12 Apr 2025 09:57:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=9C=8B=E6=9D=BF=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E6=95=B0=E5=88=9D=E5=A7=8BneId=E4=BC=A0=E5=85=A5=E5=A4=B1?= =?UTF-8?q?=E8=B4=A5=EF=BC=8C=E7=A6=81=E6=AD=A2=E9=80=89=E6=8B=A9=E5=BD=93?= =?UTF-8?q?=E5=89=8D=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/overview/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/dashboard/overview/index.vue b/src/views/dashboard/overview/index.vue index ab489c57..f955c4f3 100644 --- a/src/views/dashboard/overview/index.vue +++ b/src/views/dashboard/overview/index.vue @@ -260,7 +260,7 @@ let udmNeId = ref('001'); let udmOtions = ref[]>([]); /**用户数量-选择UDM */ function fnSelectUDM(e: any) { - udmNeId.value = e; + udmNeId.value = e.key; listUDMSub({ neId: udmNeId.value, pageNum: 1, pageSize: 1 }).then(res => { if (res.code === RESULT_CODE_SUCCESS) { skimState.udmSubNum = res.total; @@ -304,7 +304,7 @@ onMounted(() => { }); udmOtions.value = arr1; if (arr1.length > 0) { - fnSelectUDM(arr1[0].value); + fnSelectUDM({ key: arr1[0].value }); } // 过滤不可用的网元 @@ -387,7 +387,7 @@ onBeforeUnmount(() => {