Browse Source

Merge branch 'feature_20250704_陈列SKU图片识别' into uat(dev)

zhujindu 4 months ago
parent
commit
ca572795a2
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/views/historicalVisit/skuRecognize.vue

+ 5 - 1
src/views/historicalVisit/skuRecognize.vue

@@ -6,7 +6,7 @@
           style="height: 30px; padding: 5px; border-radius: 5px"
           type="info"
           v-if="detail && detail.skuPhotoIdentifyId"
-          @click="feedbackShow = true"
+          @click="clickFeedbackShow"
           >识别异常反馈</van-button
         >
       </template>
@@ -146,6 +146,10 @@ export default {
         ''
       );
     },
+    clickFeedbackShow() {
+      this.feedbackMessage = '';
+      this.feedbackShow = true;
+    },
     onClickLeft() {
       this.$router.go(-1);
     },