hookehuyr

refactor(verificationResult): 移除未使用的验证码显示和授权状态文本

清理不再需要的代码,简化页面逻辑
<!--
* @Date: 2026-01-08 13:01:20
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2026-01-20 17:54:48
* @LastEditTime: 2026-01-20 17:59:01
* @FilePath: /xyxBooking-weapp/src/pages/verificationResult/index.vue
* @Description: 核销结果页面
-->
......@@ -57,7 +57,7 @@
<view class="text-gray-500 text-base mb-2">失败原因</view>
<view class="text-red-500 text-lg font-medium break-all">{{ msg }}</view>
</view>
<view v-else-if="verify_code" class="mt-2 break-all whitespace-pre-wrap text-lg font-medium text-gray-900">{{ verify_code }}</view>
<!-- <view v-else-if="verify_code" class="mt-2 break-all whitespace-pre-wrap text-lg font-medium text-gray-900">{{ verify_code }}</view> -->
<view v-else class="mt-2 text-base text-gray-400">暂无核销信息</view>
</view>
......@@ -125,10 +125,10 @@ const status_icon_color = computed(() => {
return '#A67939'
})
const can_redeem_text = computed(() => {
if (store?.appUserInfo?.can_redeem === true) return '已授权'
return '未授权'
})
// const can_redeem_text = computed(() => {
// if (store?.appUserInfo?.can_redeem === true) return '已授权'
// return '未授权'
// })
/**
* @description: 核销预约码
......