zhangwei
2025-08-29 161355f01e267159f065ec0b277c6735437b1eab
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)) {