|
@@ -58,8 +58,9 @@ export default {
|
|
|
},
|
|
|
handleClickNode(e,data){
|
|
|
//console.log(data)
|
|
|
- const {ClassifyId,UniqueCode,EdbInfoId} = data
|
|
|
- let {href} = this.$router.resolve({path:`/database`,query:{code:UniqueCode,id:EdbInfoId,classifyId:ClassifyId}});
|
|
|
+ //EdbInfoType=1 跳预测指标详情,=0跳指标库详情
|
|
|
+ const {ClassifyId,UniqueCode,EdbInfoId,EdbInfoType} = data
|
|
|
+ let {href} = this.$router.resolve({path:EdbInfoType===1?'/predictEdb':'/database',query:{code:UniqueCode,id:EdbInfoId,classifyId:ClassifyId}});
|
|
|
window.open(href,'_blank');
|
|
|
|
|
|
},
|