dcc
2024-05-15 9d1fadaf0e2abf8e04446580d8baadf7717ce0d1
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) {