From 31eee8d607ba9e5764ba63ebb3285f6e912205e8 Mon Sep 17 00:00:00 2001 From: kongjun Date: Fri, 24 Jun 2022 18:12:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=94=E7=94=A8=E8=B5=84=E6=BA=90=E5=85=B3?= =?UTF-8?q?=E8=81=94=E7=BB=84=E4=BB=B6=E3=80=81=E9=A1=B9=E7=9B=AE=E7=AD=89?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E5=90=8D=E7=A7=B0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bsabilityai-relate-application.vue | 91 ++++++++++--------- .../modules/ability/bsabilityservice.vue | 5 + 2 files changed, 53 insertions(+), 43 deletions(-) diff --git a/back/src/views/modules/ability/bsabilityai-relate-application.vue b/back/src/views/modules/ability/bsabilityai-relate-application.vue index 3fe9d1ee..a08a977a 100644 --- a/back/src/views/modules/ability/bsabilityai-relate-application.vue +++ b/back/src/views/modules/ability/bsabilityai-relate-application.vue @@ -9,15 +9,15 @@ :key="showKey" >
- @@ -33,65 +33,71 @@ diff --git a/back/src/views/modules/ability/bsabilityservice.vue b/back/src/views/modules/ability/bsabilityservice.vue index 78f27f4e..a2a819dd 100644 --- a/back/src/views/modules/ability/bsabilityservice.vue +++ b/back/src/views/modules/ability/bsabilityservice.vue @@ -149,6 +149,7 @@ v-if="relateApplicationResourceVisible" ref="relateApplication" :relateInfo="relationData" + :nameArray="topNameArray" @isShowRelatePopup="handleIsShowRelatePopupApply" >
@@ -187,6 +188,7 @@ export default { qp: false, relateApplicationResourceVisible: false, relationData: {}, //打开穿梭框时传递的参数 + topNameArray: [], // }; }, watch: {}, @@ -371,6 +373,7 @@ export default { linkType: "1", responseData: res.data, }; + this.topNameArray = ["未关联组件名称", "已关联组件名称"]; console.log(" this.relationData", this.relationData); //将数据传递给引入的组件 }); @@ -402,6 +405,7 @@ export default { linkType: "1", responseData: res.data, }; + this.topNameArray = ["未关联项目名称", "已关联项目名称"]; //将数据传递给引入的组件 }); }, @@ -428,6 +432,7 @@ export default { linkType: "1", responseData: res.data, }; + this.topNameArray = ["未关联基础设施名称", "已关联基础设施名称"]; //将数据传递给引入的组件 }); },