修改领取顺序,先核销

This commit is contained in:
yml2213
2026-05-31 11:58:12 +08:00
parent 11cf0e93a4
commit 904ecc9303
6 changed files with 105 additions and 39 deletions
@@ -24,7 +24,7 @@ const activeGuideNames = ref(['guide'])
<section class="content-card">
<h2> 1 提交核销码</h2>
<p class="muted">
请您先从快手小店复制核销码验证通过后系统会自动准备绑定资源.
请您先从快手小店复制核销码提交后会立即核销核销成功后系统会自动准备绑定资源
</p>
<el-input
@@ -43,15 +43,13 @@ const activeGuideNames = ref(['guide'])
:disabled="!canSubmitTicket"
@click="$emit('submitTicket')"
>
验证核销码并继续
提交核销码并继续
</el-button>
<div class="status-banner info">
<el-icon><Clock /></el-icon>
<span>{{
isBindingPreparing
? '绑定资源会在核销通过后自动准备。'
: '核销完成后会自动进入扫码绑定步骤。'
isBindingPreparing ? '核销完成后会自动准备绑定资源。' : '核销完成后会自动进入扫码绑定步骤。'
}}</span>
</div>
@@ -116,7 +116,7 @@ export function useKuaishouCloudClaim(token: () => string) {
if (isTicketVerified.value) {
return isBindingPrepared.value ? '请完成扫码绑定' : '绑定链接刷新中,请稍候'
}
return '等待提交核销'
return '等待提交核销'
})
const resultTitle = computed(() => {
@@ -198,7 +198,7 @@ export function useKuaishouCloudClaim(token: () => string) {
ticketCode: normalizedTicketCode,
})
await applyDetail(response.data)
showSuccess('核销码验证通过,系统已开始准备绑定资源')
showSuccess('核销已完成,系统已开始准备绑定资源')
syncPolling()
} catch (error) {
showError(error instanceof Error ? error.message : '核销码验证失败')