Browse Source

Merge branch 'feature_20250904_调色机识别结果提示' into release

zhujindu 2 months ago
parent
commit
863c766a3a
1 changed files with 19 additions and 4 deletions
  1. 19 4
      src/components/imageAIVerifyErr.vue

+ 19 - 4
src/components/imageAIVerifyErr.vue

@@ -18,6 +18,12 @@
           <div class="AIVerify">
             <span>{{ contentMessage }}</span>
           </div>
+          <!-- 调色机识别异常反馈 -->
+          <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>
@@ -43,11 +49,8 @@
               <van-icon name="warning-o" />上传后作为本店标准店招,未来每次拜访时校验。
             </template>
           </div>
-          <!-- 补位 -->
-          <!-- <template v-else>
-            <div class="coveringPosition"></div>
-          </template> -->
         </template>
+        <!-- 店招识别,标准门店照对比 -->
         <template v-if="shopSignChange == 1">
           <div class="historyImageAIVerify">
             <!-- 有门店身份证时 只显示门店身份证和本地拜访照 -->
@@ -152,6 +155,7 @@ export default {
       lastVisitUrl: '', //	上次拜访时店招
       storeIDCardUrl: '', //	门店身份证
       maxNum: 2,
+      tsjErrorMsg: '',
     };
   },
   methods: {
@@ -176,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) {
@@ -323,6 +328,16 @@ export default {
         max-width: 70%;
       }
     }
+    .tsjErrorMsg {
+      font-size: vw(32);
+      margin-top: vw(45);
+      display: flex;
+      justify-content: center;
+      span {
+        display: block;
+        max-width: 70%;
+      }
+    }
   }
   .van-popup {
     width: 90%;