Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
xyxBooking-weapp
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2026-01-20 17:59:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
abb5340849015c2555e2b89f1bab75b1d55b26ef
abb53408
1 parent
fa4cd16f
refactor(verificationResult): 移除未使用的验证码显示和授权状态文本
清理不再需要的代码,简化页面逻辑
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
src/pages/verificationResult/index.vue
src/pages/verificationResult/index.vue
View file @
abb5340
<!--
* @Date: 2026-01-08 13:01:20
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2026-01-20 17:5
4:48
* @LastEditTime: 2026-01-20 17:5
9: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: 核销预约码
...
...
Please
register
or
login
to post a comment