Kaynağa Gözat

feature_20250904_调色机识别结果提示

zhujindu 3 ay önce
ebeveyn
işleme
0473a84353
1 değiştirilmiş dosya ile 17 ekleme ve 1 silme
  1. 17 1
      src/components/imageAIVerifyErr.vue

+ 17 - 1
src/components/imageAIVerifyErr.vue

@@ -19,7 +19,11 @@
             <span>{{ contentMessage }}</span>
           </div>
           <!-- 调色机识别异常反馈 -->
-          <template v-if="npkpiData.recognizeType == 3"></template>
+          <template v-if="npkpiData.recognizeType == 3 && tsjErrorMsg != ''">
+            <div class="tsjErrorMsg">
+              <span>{{ tsjErrorMsg }}</span>
+            </div>
+          </template>
           <template v-if="shotsNum >= maxNum">
             <div class="feedbackMessage">
               <div class="label">若门店异常、或图像识别错误,可在此反馈:</div>
@@ -151,6 +155,7 @@ export default {
       lastVisitUrl: '', //	上次拜访时店招
       storeIDCardUrl: '', //	门店身份证
       maxNum: 2,
+      tsjErrorMsg: '',
     };
   },
   methods: {
@@ -175,6 +180,7 @@ export default {
       this.createStoreUrl = imageAIVerifyData.createStoreUrl || ''; //	建店时店招
       this.lastVisitUrl = imageAIVerifyData.lastVisitUrl || ''; //	上次拜访时店招
       this.storeIDCardUrl = imageAIVerifyData.storeIDCardUrl || ''; //	门店身份证
+      this.tsjErrorMsg = imageAIVerifyData.tsjErrorMsg || ''; //	调色机识别结果
       // 先判断照片作弊情况,然后是否合格,然后是否和历史照片一致
       // 作弊和不合格记录识别次数,超过两次弹框提醒
       if (this.npkpiData.checkInfo) {
@@ -322,6 +328,16 @@ export default {
         max-width: 70%;
       }
     }
+    .tsjErrorMsg {
+      font-size: vw(28);
+      margin-top: vw(45);
+      display: flex;
+      justify-content: center;
+      span {
+        display: block;
+        max-width: 70%;
+      }
+    }
   }
   .van-popup {
     width: 90%;