From ccee429d379e0108b7445f72ade8d97c110a6fb3 Mon Sep 17 00:00:00 2001 From: ZZJ <zzjdsg2300@163.com> Date: 星期二, 09 十一月 2021 18:01:59 +0800 Subject: [PATCH] 问题修复 --- src/components/subComponents/CardItem.vue | 27 +++++++++++++++------------ 1 files changed, 15 insertions(+), 12 deletions(-) diff --git a/src/components/subComponents/CardItem.vue b/src/components/subComponents/CardItem.vue index 4432950..077aea4 100644 --- a/src/components/subComponents/CardItem.vue +++ b/src/components/subComponents/CardItem.vue @@ -71,7 +71,7 @@ /> </div> <div class="s-card-left-box" v-else> - <img :src="data.baseInfo[0] | httpImage" class="cursor-pointer" /> + <img :src="data.baseInfo[0].targetPicUrl | httpImage" class="cursor-pointer" /> </div> </div> @@ -295,7 +295,7 @@ <!-- 娌℃湁搴曞簱锛岄潪姣斿锛屾櫘閫氭ā寮� 涓�瀹氭湁targetInfo锛屽苟涓攖argetInfo涓暟涓�1--> <div - v-else-if="data.targetInfo !== null && data.targetInfo[0].picSmUrl !== '' && data.targetInfo.length == 1" + v-else-if="data.targetInfo !== null && data.targetInfo[0].picSmUrl !== ''" class="s-card-right-signal" > <div @@ -505,11 +505,11 @@ type: String, default: "search" }, - fromCluster:{ - type:Boolean, - default:false + fromCluster: { + type: Boolean, + default: false }, - searchT:{} + searchT: {} }, computed: { isId() { @@ -540,6 +540,9 @@ } }, httpImage(url) { + if (!url.length) { + return "" + } return '/httpImage/' + url + ((url.indexOf("?") >= 0) ? '&' : '?') + 'width=160' } }, @@ -606,9 +609,9 @@ } let message if (this.fromCluster) { - message = 'toCluster?showType=findByPic&targetId=' + captureId + '&picSmUrl=' + imgUrl + '&compType=' + compType + '×tamp=' + new Date().getTime() + '&start=' + this.searchT[0] + '&end=' + this.searchT[1]; + message = 'toCluster?showType=findByPic&targetId=' + captureId + '&picSmUrl=' + imgUrl + '&compType=' + compType + '×tamp=' + new Date().getTime() + '&start=' + this.searchT[0] + '&end=' + this.searchT[1]; } else { - message = 'toSearch?showType=findByPic&targetId=' + captureId + '&picSmUrl=' + imgUrl + '&compType=' + compType + '×tamp=' + new Date().getTime() + '&start=' + this.searchT[0] + '&end=' + this.searchT[1]; + message = 'toSearch?showType=findByPic&targetId=' + captureId + '&picSmUrl=' + imgUrl + '&compType=' + compType + '×tamp=' + new Date().getTime() + '&start=' + this.searchT[0] + '&end=' + this.searchT[1]; } window.parent.postMessage({ msg: message @@ -622,15 +625,15 @@ font-family: PingFangSC-Medium; } .color222 { - font-size: 0.75rem; + font-size: 12px; font-weight: 600; - line-height: 1rem; + line-height: 14px; color: #222222; } .color666 { color: #666666; - font-size: 0.75rem; - line-height: 1.25rem; + font-size: 12px; + line-height: 16px; } .box-card { cursor: default; -- Gitblit v1.8.0