From 1136b8d80116008cc1f8da51f0f53dc746d52f86 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Sun, 12 Oct 2025 15:41:09 +0800
Subject: [PATCH] 1
---
src/views/register/identity.vue | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/views/register/identity.vue b/src/views/register/identity.vue
index dd37d0b..246e79c 100644
--- a/src/views/register/identity.vue
+++ b/src/views/register/identity.vue
@@ -4,7 +4,8 @@
<div class="header">
<div class="flex items-center" @click="$router.go(-1)"><img
src="../../assets/image/assets-center/left-arrow.png" alt="" class="leftReturn" /></div>
- <div class="textColor" @click="$router.push('/gooleVerify')">{{ $t('skip') }}</div>
+ <!-- <div class="textColor" @click="$router.push('/gooleVerify')">{{ $t('skip') }}</div> -->
+ <div class="textColor" @click="$router.push('/finish')">{{ $t('skip') }}</div>
</div>
<Step :step="2"></Step>
<div class="title textColor">{{ $t('realNameVertify') }}</div>
@@ -205,7 +206,8 @@
return
}
if (status.value !== 0) {
- router.push('/gooleVerify');
+ // router.push('/gooleVerify');
+ router.push('/finish');
} else {
_applyIdentify({
name: name.value,
@@ -216,7 +218,8 @@
countryName: countryCode.value // countryName 存储的 code, 回来再遍历
}).then(() => {
showToast(t('submitSuccess'))
- router.push('/gooleVerify');
+ // router.push('/gooleVerify');
+ router.push('/finish');
//this.fetchInfo()
}).catch(err => {
console.log(err)
--
Gitblit v1.9.3