|
|
@@ -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>
|