From e08dcc9d8de68d7b3cfe5a682b96ed1c69b32325 Mon Sep 17 00:00:00 2001 From: puhui999 Date: Mon, 27 Mar 2023 11:37:58 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E9=87=8D=E6=9E=84=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=83=A8=E9=97=A8=E5=9B=9E=E6=98=BE=E6=96=B9?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/user/index.vue | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 542ae2f0..2bc1893b 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -332,26 +332,24 @@ const getPostOptions = async () => { const res = await getSimplePostList() postOptions.value.push(...res) } -const dataFormater = (val) => { - return deptFormater(deptOptions.value, val) -} +const dataFormater = computed(() => (deptId: number) => deptFormater(deptOptions.value, deptId)) + //部门回显 -const deptFormater = (ary, val: any) => { - var o = '' - if (ary && val) { - for (const v of ary) { - if (v.id == val) { - o = v.name - if (o) return o - } else if (v.children?.length) { - o = deptFormater(v.children, val) - if (o) return o +const deptFormater = (arr: Tree[], deptId: number) => { + let deptName = '' + if (arr && deptId) { + for (const item of arr) { + if (item.id === deptId) { + deptName = item.name + break + } + if (item.children) { + deptName = deptFormater(item.children, deptId) ?? '' + break } } - return o - } else { - return val } + return deptName } // 设置标题