From 4f7f16803ab5ed7b8a8a0dc087792d9b2fcefe2b Mon Sep 17 00:00:00 2001 From: ZZJ <10913410+zzj2100@user.noreply.gitee.com> Date: 星期三, 15 六月 2022 14:39:15 +0800 Subject: [PATCH] 统计查询 --- src/views/search/components/UploadImg.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/search/components/UploadImg.vue b/src/views/search/components/UploadImg.vue index a802d14..f89927b 100644 --- a/src/views/search/components/UploadImg.vue +++ b/src/views/search/components/UploadImg.vue @@ -30,7 +30,7 @@ </p> <div class="upload-img-box"> <img - :src="'/httpImage/' + tempUploadImg" + :src="'http://' + tempUploadImg" alt="涓存椂娴嬭瘯" v-show="!displayUpload" class="bigPhoto" @@ -88,7 +88,7 @@ :key="index" > <img - :src="item ? '/httpImage/' + item : tempImg" + :src="item ? 'http://' + item : tempImg" @click="selected($event, index)" style="max-height: 100%" :style="index == clickNum ? 'border:1px solid #FF7733' : ''" @@ -255,7 +255,7 @@ console.log("鍒囧浘杩斿洖锛�", res); if (res.success) { document.querySelector(".el-upload-list").querySelector("img").src = - "/httpImage/" + res.data.uploadImage; + "http://" + res.data.uploadImage; this.resReady = true; this.realSmallPath = res.data.smImage; this.VideoPhotoData.isHaveRealSmallImg = -- Gitblit v1.8.0