From 9d1fadaf0e2abf8e04446580d8baadf7717ce0d1 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Wed, 15 May 2024 15:09:57 +0800
Subject: [PATCH] 前端下单页面改成模范网站样式 包括颜色
---
src/page/forget/index.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/page/forget/index.vue b/src/page/forget/index.vue
index 5fa4a36..804a951 100644
--- a/src/page/forget/index.vue
+++ b/src/page/forget/index.vue
@@ -8,7 +8,7 @@
<div class="flex re-tab text-grey">
<div :class="activeIndex == 0 ? 'active' : ''" @click="changeIndex(0)">{{ $t('邮箱') }}</div>
<div :class="activeIndex == 1 ? 'active' : ''" @click="changeIndex(1)">{{ $t('手机号') }}</div>
- <div :class="activeIndex == 2 ? 'active' : ''" @click="changeIndex(2)">{{ $t('谷歌验证') }}</div>
+<!-- <div :class="activeIndex == 2 ? 'active' : ''" @click="changeIndex(2)">{{ $t('谷歌验证') }}</div>-->
</div>
<ExInput :label="$t('账号')" :placeholderText="$t('请输入账号')" v-model="account" :dialCode="dialCode"
@@ -71,7 +71,7 @@
type = 3
}
Axios.getUserNameVerifTarget({
- username: type == 1 ? `${this.dialCode}${this.account}` : this.account,
+ username: this.account,
verifcode_type: type //验证类型 1手机 2 邮箱 3谷歌验证器
}).then((res) => {
if (type == 1 && !res.data.phone_authority) {
--
Gitblit v1.9.3