hookehuyr

fix: 核销失败时清空verify_info值

1 <!-- 1 <!--
2 * @Date: 2026-01-08 13:01:20 2 * @Date: 2026-01-08 13:01:20
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2026-01-20 17:59:01 4 + * @LastEditTime: 2026-01-20 18:03:33
5 * @FilePath: /xyxBooking-weapp/src/pages/verificationResult/index.vue 5 * @FilePath: /xyxBooking-weapp/src/pages/verificationResult/index.vue
6 * @Description: 核销结果页面 6 * @Description: 核销结果页面
7 --> 7 -->
...@@ -156,6 +156,7 @@ const verify_ticket = async (code) => { ...@@ -156,6 +156,7 @@ const verify_ticket = async (code) => {
156 } 156 }
157 verify_status.value = 'fail' 157 verify_status.value = 'fail'
158 msg.value = res?.msg || '核销失败' 158 msg.value = res?.msg || '核销失败'
159 + verify_info.value = {}
159 } catch (e) { 160 } catch (e) {
160 verify_status.value = 'fail' 161 verify_status.value = 'fail'
161 msg.value = '核销失败' 162 msg.value = '核销失败'
......