Browse Source

fix 复审点击之后提示

ylong 1 week ago
parent
commit
516a211226
1 changed files with 9 additions and 2 deletions
  1. 9 2
      pages-mine/components/order-actions.vue

+ 9 - 2
pages-mine/components/order-actions.vue

@@ -14,7 +14,7 @@
                     已用时长:
                     <time-clock :initialSeconds="order.reviewCostTime"></time-clock>
                 </div>
-                <button v-if="order.showReview == 2" class="action-btn plain" @click.stop>已申请复审</button>
+                <button v-if="order.showReview == 2" class="action-btn plain" @click.stop="handleReview">已申请复审</button>
                 <button class="action-btn" v-if="order.showReview == 3"
                     @click.stop="handleAction('reviewImage')">审核图片</button>
             </template>
@@ -87,7 +87,14 @@ export default {
                 type,
                 order: this.order
             })
-        }
+        },
+        // 处理复审按钮点击事件
+        handleReview() {
+            uni.showToast({
+                title: '正在复审中,请耐心等待',
+                icon: 'none'
+            })
+        },
     }
 }
 </script>