浏览代码

bugfix-3154:相关性、统计特性编辑没有三级目录

cxmo 1 年之前
父节点
当前提交
236eba9110

+ 1 - 1
src/views/chartRelevance_manage/components/saveChartTobaseDia.vue

@@ -114,7 +114,7 @@ export default {
       }
 
       if(res.Ret !== 200) return
-      this.filterNodes(res.Data.AllNodes,this.chartData.Source===1?2:1)
+      this.filterNodes(res.Data.AllNodes,this.chartData.Source===1?3:1)
 
 			this.classifyOptions = res.Data.AllNodes || [];
     

+ 4 - 4
src/views/chartRelevance_manage/components/saveEdbToBaseDia.vue

@@ -136,13 +136,13 @@ export default {
 			let res;
 			//统计特征区分原指标是否预测,保存到预测指标库或/eta指标库
 			if(this.$route.path==='/statisticFeatureChartEditor'&&this.$parent.oldEdbInfoType) {
-        res = await preDictEdbInterface.classifyList()
+        res = await preDictEdbInterface.classifyListV2()
 				if(res.Ret !== 200) return
-				this.filterNodes(res.Data.AllNodes,1);
+				//this.filterNodes(res.Data.AllNodes,1);
       }else {
-				res = await dataBaseInterface.menuList()
+				res = await dataBaseInterface.menuListV3()
 				if(res.Ret !== 200) return
-				this.filterNodes(res.Data.AllNodes,2);
+				//this.filterNodes(res.Data.AllNodes,2);
 			}
 
 			this.options = res.Data.AllNodes || [];