|
@@ -119,6 +119,20 @@
|
|
|
v-if="data.Button.DeleteButton&&!data.EdbInfoId"
|
|
|
/>
|
|
|
<i class="el-icon-view" v-if="data.EdbInfoId" @click.stop="viewNode(node,data)"></i>
|
|
|
+ <img
|
|
|
+ v-if="data.Button.ShowChartRelation"
|
|
|
+ @click.stop="showAssociateChart=true,showAssociateComputeData=false"
|
|
|
+ src="~@/assets/img/icons/associate_chart.png"
|
|
|
+ style="width: 14px; height: 14px;margin-left: 8px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <img
|
|
|
+ v-if="data.Button.ShowEdbRelation"
|
|
|
+ @click.stop="showAssociateComputeData=true,showAssociateChart=false"
|
|
|
+ src="~@/assets/img/icons/associate_data.png"
|
|
|
+ style="width: 14px; height: 14px;margin-left: 8px"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
</span>
|
|
|
</span>
|
|
|
</el-tree>
|
|
@@ -149,7 +163,7 @@
|
|
|
<div class="main-right" id="right" :style="isSlideLeft ? 'width:100%' : 'width:80%'">
|
|
|
|
|
|
<!-- 详情 -->
|
|
|
- <div class="edb-detail-wrapper" v-if="select_id">
|
|
|
+ <div class="edb-detail-wrapper" v-if="select_id&&!showAssociateChart&&!showAssociateComputeData">
|
|
|
<div class="detail-top">
|
|
|
<span class="title">{{ currentLang==='en'?(edb_nameEn||edbName):edbName }}</span>
|
|
|
<ul class="action-ul">
|
|
@@ -185,7 +199,7 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
- <div class="sheet-list-cont" v-else>
|
|
|
+ <div class="sheet-list-cont" v-else-if="!select_id">
|
|
|
<div class="list-top">
|
|
|
<span>共{{ edb_total }}个预测指标</span>
|
|
|
</div>
|
|
@@ -220,6 +234,14 @@
|
|
|
<tableNoData text="暂无指标"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+ <!-- 指标关联图模块 -->
|
|
|
+ <div class="edb-detail-wrapper" style="padding: 30px 20px;" v-if="showAssociateChart&&select_id">
|
|
|
+ <dataAssociateChart :edbInfoId="select_id"></dataAssociateChart>
|
|
|
+ </div>
|
|
|
+ <div class="edb-detail-wrapper" style="padding: 30px 20px;" v-if="showAssociateComputeData&&select_id">
|
|
|
+ <dataAssociateComputeData :edbInfoId="select_id"></dataAssociateComputeData>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -391,6 +413,8 @@ import jointTargetDia from '@/views/dataEntry_manage/databaseComponents/jointTar
|
|
|
import fittingResidueDia from '@/views/dataEntry_manage/databaseComponents/fittingResidueDia.vue';
|
|
|
import diffusionIndexDialog from '@/views/dataEntry_manage/databaseComponents/diffusionIndexDia.vue';
|
|
|
import { formulaTip } from '@/views/dataEntry_manage/databaseComponents/util';
|
|
|
+import dataAssociateChart from '@/views/dataEntry_manage/databaseComponents/dataAssociateChart.vue'
|
|
|
+import dataAssociateComputeData from '@/views/dataEntry_manage/databaseComponents/dataAssociateComputeData.vue'
|
|
|
|
|
|
export default {
|
|
|
name:'',
|
|
@@ -408,7 +432,9 @@ export default {
|
|
|
jointTargetDia,
|
|
|
fittingResidueDia,
|
|
|
batchComputedDialog,
|
|
|
- diffusionIndexDialog
|
|
|
+ diffusionIndexDialog,
|
|
|
+ dataAssociateChart,
|
|
|
+ dataAssociateComputeData
|
|
|
},
|
|
|
mixins:[ leftMixin ],
|
|
|
beforeRouteLeave (to, from, next) {
|
|
@@ -548,6 +574,9 @@ export default {
|
|
|
isLookHistory: false,
|
|
|
lookEdbId: 0,
|
|
|
searchLoading:false,
|
|
|
+
|
|
|
+ showAssociateChart:false,//显示指标关联的图
|
|
|
+ showAssociateComputeData:false,//显示指标关联的引用计算指标
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -703,6 +732,8 @@ export default {
|
|
|
this.select_classify = !EdbInfoId ? ClassifyId : 0;
|
|
|
this.resetNodeStyle(node);
|
|
|
this.dynamicNode = node;
|
|
|
+ this.showAssociateChart=false
|
|
|
+ this.showAssociateComputeData=false
|
|
|
},
|
|
|
|
|
|
async saveEdbHandle() {
|
|
@@ -1170,6 +1201,9 @@ export default {
|
|
|
addComputedCallBack(type, params) {
|
|
|
this.computed_type = 0;
|
|
|
this.computed_source = 1;
|
|
|
+
|
|
|
+ this.showAssociateChart=false;
|
|
|
+ this.showAssociateComputeData=false;
|
|
|
type === 'add' ? this.getTreeData(params) : this.getTreeData();
|
|
|
if(type === 'edit') {
|
|
|
this.detail_show_chart ? this.$refs.detailComponentRef.getDetail() : this.$refs.detailComponentRef.getData();
|