Browse Source

同步下指标分类

Karsa 1 year ago
parent
commit
0721f81471

+ 12 - 1
src/views/datasheet_manage/customAnalysis/components/createTargetForm.vue

@@ -30,6 +30,7 @@
             value: 'ClassifyId',
             children: 'Children',
             emitPath: false,
+            checkStrictly: true
           }"
           clearable
           placeholder="请选择所属目录"
@@ -115,10 +116,20 @@ export default {
 		getMenu() {
 			dataBaseInterface.menuListV3().then((res) => {
 				if (res.Ret !== 200) return
-
+        this.filterNodes(res.Data.AllNodes||[]);
 				this.classifyOption = res.Data.AllNodes || [];
 			});
 		},
+    
+    filterNodes(arr) {
+			arr.length &&
+				arr.forEach((item) => {
+					item.Children.length && this.filterNodes(item.Children);
+					if (!item.Children.length) {
+						delete item.Children;
+					}
+				});
+		},
 
     /* 改变公式 */
     changeFormat(type) {