zhujindu 1 vuosi sitten
vanhempi
commit
580c6fb5a2
2 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. BIN
      src/assets/imageEmpty.png
  2. 5 1
      src/components/imageAIVerifyErr.vue

BIN
src/assets/imageEmpty.png


+ 5 - 1
src/components/imageAIVerifyErr.vue

@@ -47,6 +47,7 @@
                 width="100px"
                 height="100px"
                 @click="previewsImg(imageAIVerifyData.createStoreUrl)" />
+              <img v-else :src="imageEmpty" width="100px" height="100px" />
               <span>建店时门店照</span>
             </div>
             <div class="newestImage imageItemAIVerify">
@@ -56,7 +57,8 @@
                 width="100px"
                 height="100px"
                 @click="previewsImg(imageAIVerifyData.lastVisitUrl)" />
-              <span>最近一次拜访店招</span>
+              <img v-else :src="imageEmpty" width="100px" height="100px" />
+              <span>上次拜访店招</span>
             </div>
           </template>
           <div class="presentImage imageItemAIVerify">
@@ -85,6 +87,7 @@
 import { ImagePreview } from 'vant';
 import store from '@/store';
 import { mapState } from 'vuex';
+import imageEmpty from '@/assets/imageEmpty.png';
 export default {
   props: {
     imageAIVerifyFlag: {
@@ -115,6 +118,7 @@ export default {
   },
   data() {
     return {
+      imageEmpty: imageEmpty,
       contentMessage: '', //提示内容
       vanPopup: true,
       shopSignChange: 0,