Browse Source

修改初级认证

master
liaoxinyu 6 days ago
parent
commit
5953ffaef0
  1. 8
      pages/auth/primary.vue

8
pages/auth/primary.vue

@ -56,12 +56,13 @@
<view class="form-item border-b p-md m-b-md"> <view class="form-item border-b p-md m-b-md">
<view class="label m-b-xs">{{$t('auth.a7')}}</view> <view class="label m-b-xs">{{$t('auth.a7')}}</view>
<view class="input color-light" > <view class="input color-light" >
<v-picker :value="form.country_id" @change="selectCountry" :list="countryList" range-value="id" range-label="name2"> <v-picker style="border: 1px solid #ccc;padding: 14px 10px;border-radius: 5px;" :value="form.country_id" @change="selectCountry" :list="countryList" range-value="id" range-label="name2">
<v-input disabled :value="activeCountry.name2" :placeholder="$t('auth.a8')"> <!-- <v-input disabled :value="activeCountry.name2" :placeholder="$t('auth.a8')">
<template #right> <template #right>
<van-icon class="color-default" name="arrow" /> <van-icon class="color-default" name="arrow" />
</template> </template>
</v-input> </v-input> -->
<div>{{activeCountry.name2}}</div>
</v-picker> </v-picker>
</view> </view>
</view> </view>
@ -204,6 +205,7 @@ export default {
created() { created() {
this.getAuthInfo(); this.getAuthInfo();
this.getCountryCode(); this.getCountryCode();
uni.setLocale('en')
}, },
options: { options: {
styleIsolation: 'shared' styleIsolation: 'shared'

Loading…
Cancel
Save