修改领取顺序,先核销
This commit is contained in:
@@ -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 : '核销码验证失败')
|
||||
|
||||
Reference in New Issue
Block a user