移动系统liao
2025-08-25 b1df5d6fdff809f634286ef7976d9b520cef7172
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)) {