|
|
|
@ -109,10 +109,14 @@ |
|
|
|
:placeholder="$t('reg.b1')" |
|
|
|
></v-input> |
|
|
|
</view> |
|
|
|
<!-- <view class="form-item border-b m-b-md p-b-xs"> |
|
|
|
<view class="label m-b-xs">{{$t('reg.b2')}}</view> |
|
|
|
<v-input class="color-light" :disabled="query.invite_code?true:false" v-model="form.invite_code" :placeholder="`${$t('reg.b3')}(${$t('reg.b4')})`"></v-input> |
|
|
|
</view> --> |
|
|
|
<!-- <view class="form-item border-b m-b-md p-b-xs"> |
|
|
|
<view class="label m-b-xs">{{$t('reg.c6')}}</view> |
|
|
|
<v-input class="color-light" v-model="form.invitationCode" type="password" :placeholder="$t('reg.c7')"></v-input> |
|
|
|
</view> --> |
|
|
|
<view class="form-item border-b m-b-md p-b-xs"> |
|
|
|
<view class="label m-b-xs">{{$t('reg.c6')}}</view> |
|
|
|
<v-input class="color-light" :disabled="query.invite_code?true:false" v-model="form.invite_code" :placeholder="`${$t('reg.c7')}(${$t('reg.b4')})`"></v-input> |
|
|
|
</view> |
|
|
|
<view class="tips d-flex m-b-md fn-sm"> |
|
|
|
<van-checkbox |
|
|
|
:value="check" |
|
|
|
@ -182,6 +186,10 @@ export default { |
|
|
|
} |
|
|
|
return; |
|
|
|
} |
|
|
|
if (!this.form.invite_code) { |
|
|
|
this.$toast(this.$t('reg.c7')); |
|
|
|
return; |
|
|
|
} |
|
|
|
this.form.type=this.form.type |
|
|
|
this.form.country_code = this.country_code || 86; |
|
|
|
|
|
|
|
|