| | |
| | | <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" |
| | |
| | | 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) { |