From 5260559b412b12b2b919b91fd4691d5a9fe3bd35 Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期一, 25 八月 2025 08:49:24 +0800 Subject: [PATCH] 完成一些用户相关逻辑修正 --- Web/src/views/Customer/fBS_EnterpriseType/index.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Web/src/views/Customer/fBS_EnterpriseType/index.vue b/Web/src/views/Customer/fBS_EnterpriseType/index.vue index e92ed6c..468bbef 100644 --- a/Web/src/views/Customer/fBS_EnterpriseType/index.vue +++ b/Web/src/views/Customer/fBS_EnterpriseType/index.vue @@ -33,7 +33,7 @@ tableData: [], tableDataCopy:[] //鎷疯礉 }); -const hasChildren = data => { +const hasChildren = (data: any[]) => { data.forEach(item => { if (item.child) { item.hasChildren = true; @@ -41,7 +41,7 @@ }); }; -const processNodesWithChildrenCheck = (nodes) => { +const processNodesWithChildrenCheck = (nodes: any[]) => { // 纭繚杈撳叆鏄暟缁� if (!Array.isArray(nodes)) { -- Gitblit v1.9.1