From 6d4f0cdd45b31fbb73f8043a4b24c28889fd909c Mon Sep 17 00:00:00 2001 From: gongjiale <942894820@qq.com> Date: Mon, 9 Jan 2023 17:19:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9jira=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/src/views/modules/ability/assignedScene/area-add.vue | 3 +++ .../putOnTheShelf/components/inputSelectCheckbox.vue | 3 ++- front/src/views/home/components/ApplicationTopDetails.vue | 6 +++++- front/src/views/home/integrationServicesDetails.vue | 7 ++++++- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/back/src/views/modules/ability/assignedScene/area-add.vue b/back/src/views/modules/ability/assignedScene/area-add.vue index 3f429dc3..a9f64845 100644 --- a/back/src/views/modules/ability/assignedScene/area-add.vue +++ b/back/src/views/modules/ability/assignedScene/area-add.vue @@ -281,6 +281,9 @@ export default { // 详情 getDetail (data) { this.dataForm = data + const _imgObj = data.fuseAttrList.find(v => v.attrType == '服务图片') || {} + this.imageUrl = _imgObj.attrValue + }, handleAvatarSuccess (res, file) { if (res.code !== 0) { diff --git a/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue b/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue index 91b1b6c7..386dac5b 100644 --- a/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue +++ b/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue @@ -81,7 +81,8 @@ js: - +
diff --git a/front/src/views/home/components/ApplicationTopDetails.vue b/front/src/views/home/components/ApplicationTopDetails.vue index 7b2a1e9a..610979d0 100644 --- a/front/src/views/home/components/ApplicationTopDetails.vue +++ b/front/src/views/home/components/ApplicationTopDetails.vue @@ -157,7 +157,11 @@ const addShoppingCart = () => { } //进入场景入口 const openScene = (val) => { - window.open(val, '_blank') + if(val==''){ + message.info("未配置场景入口") + }else{ + window.open(val, '_blank') + } } // // 立即申请 function toView() { diff --git a/front/src/views/home/integrationServicesDetails.vue b/front/src/views/home/integrationServicesDetails.vue index 3c8cf180..0be7b18f 100644 --- a/front/src/views/home/integrationServicesDetails.vue +++ b/front/src/views/home/integrationServicesDetails.vue @@ -392,7 +392,12 @@ //进入场景入口 const openScene = (val) => { - window.open(val, '_blank') + if(val==''){ + message.info("未配置场景入口") + }else{ + window.open(val, '_blank') + } + } const selectNav = (key) => { selectNow.value = key