Browse Source

修改注册页面

master
liaoxinyu 6 days ago
parent
commit
aac97bbf6a
  1. 4
      i18n/lang/en.json
  2. 12
      pages/reg/index.vue

4
i18n/lang/en.json

@ -131,7 +131,7 @@
"a1": "Portrait", "a1": "Portrait",
"a2": "Nickname", "a2": "Nickname",
"a3": "Master Account", "a3": "Master Account",
"a4": "Mobile Number", "a4": "Phone Number",
"a5": "Untie", "a5": "Untie",
"a6": "Binding", "a6": "Binding",
"a7": "Mailbox binding", "a7": "Mailbox binding",
@ -413,7 +413,7 @@
"c3": "Please fill in the phone number", "c3": "Please fill in the phone number",
"c4": "Please fill in the mailbox number", "c4": "Please fill in the mailbox number",
"c5": "Registered successfully", "c5": "Registered successfully",
"c6": "Invitation Code (required)", "c6": "Invitation Code (Required)",
"c7": "Enter your invitation code", "c7": "Enter your invitation code",
"c8": "Verification code", "c8": "Verification code",
"c9": "Enter verification code", "c9": "Enter verification code",

12
pages/reg/index.vue

@ -59,15 +59,14 @@
<view class="form-item m-b-md p-b-xs"> <view class="form-item m-b-md p-b-xs">
<view> <view>
<view class="label m-b-xs">{{$t('reg.a2')}}</view> <view class="label m-b-xs black">{{$t('accountSettings.a4')}}</view>
<view class="d-flex align-center login_box3"> <view class="d-flex align-center" style="align-items: center;">
<view style="width: 30%;margin-right: 20rpx;"> <view style="width: 40%;margin-right: 20rpx;">
<el-select v-model="form.country_id" filterable :placeholder="$t('auth.d15')" no-match-text="No matching data"> <el-select v-model="form.country_id" filterable :placeholder="$t('auth.d15')" no-match-text="No matching data">
<el-option v-for="(item, index) in countryList" :key="index" :value="`${item.id}`" :label="`+${item.country_code} ${item.name}`"></el-option> <el-option v-for="(item, index) in countryList" :key="index" :value="`${item.id}`" :label="`+${item.country_code} ${item.name}`"></el-option>
</el-select> </el-select>
</view> </view>
<v-input style="width: 480rpx;" v-model="form.phone" class="color-light" :placeholder="$t('auth.d12')"> <view class="login_box3" style="margin-top: 0px;"><v-input style="width: 360rpx;" v-model="form.phone" class="color-light" :placeholder="$t('auth.d12')"></v-input></view>
</v-input>
</view> </view>
</view> </view>
</view> </view>
@ -415,4 +414,7 @@ export default {
.black{ .black{
color: #000; color: #000;
} }
::v-deep .el-input__inner{
font-size: 13px !important;
}
</style> </style>
Loading…
Cancel
Save