订单,提现功能调整
This commit is contained in:
@@ -7,13 +7,15 @@
|
||||
<label>+86</label>
|
||||
<input type="number" v-model="username" maxlength="11" placeholder="输入手机号码">
|
||||
</view>
|
||||
<view class="from-inpus">
|
||||
<view class="from-inpus from-password">
|
||||
<label>登录密码</label>
|
||||
<input type="safe-password" password v-model="password" placeholder="设置登录密码">
|
||||
<input type="safe-password" :password="eyesShow[0]" v-model="password" placeholder="须包含大小写,最少8位">
|
||||
<image class="from-password-eyes" mode="widthFix" :src="require(eyesShow[0] ? '@/static/icons/eyes_hide.png': '@/static/icons/eyes_open.png')" @click="onEyes(0)"></image>
|
||||
</view>
|
||||
<view class="from-inpus">
|
||||
<view class="from-inpus from-password">
|
||||
<label>确认密码</label>
|
||||
<input type="safe-password" password v-model="confirmation" placeholder="请确认登录密码">
|
||||
<input type="safe-password" :password="eyesShow[1]" v-model="confirmation" placeholder="须包含大小写,最少8位">
|
||||
<image class="from-password-eyes" mode="widthFix" :src="require(eyesShow[1] ? '@/static/icons/eyes_hide.png': '@/static/icons/eyes_open.png')" @click="onEyes(1)"></image>
|
||||
</view>
|
||||
<view class="from-inpus">
|
||||
<label>邀请码</label>
|
||||
@@ -62,6 +64,7 @@
|
||||
captchaShow : false,
|
||||
parentId : '',
|
||||
isDisabled : false,
|
||||
eyesShow : [ true, true ]
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@@ -76,6 +79,10 @@
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
// 密码显示隐藏
|
||||
onEyes(index){
|
||||
this.$set(this.eyesShow, index, !this.eyesShow[index])
|
||||
},
|
||||
// 提交注册信息
|
||||
onRegistered(){
|
||||
uni.showLoading({
|
||||
@@ -249,6 +256,18 @@
|
||||
font-size: 32rpx;
|
||||
}
|
||||
}
|
||||
.from-password{
|
||||
.from-password-eyes{
|
||||
width: 38rpx;
|
||||
height: 38rpx;
|
||||
}
|
||||
input{
|
||||
width: calc(100% - 260rpx);
|
||||
height: 100rpx;
|
||||
line-height: 100rpx;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
}
|
||||
.from-input-phoen{
|
||||
label{
|
||||
line-height: 60rpx;
|
||||
|
||||
Reference in New Issue
Block a user