Browse Source

处理注册页面

master
453530270@qq.com 2 years ago
parent
commit
5c6446f768
  1. 24
      pages/reg/reg.vue

24
pages/reg/reg.vue

@ -29,12 +29,13 @@
</radio-group>
<!-- 隐私政策等 -->
<div class="privacy">
<label>
<view class="privacy">
<view>
<checkbox :checked="isTick" color="#4399ff" class="ckbox" @click="readpri"></checkbox>
我已阅读并同意网站的 隐私政策 用户注册协议
</label>
</div>
我已阅读并同意网站的 <text class="atxt" @tap="viewdoc('private')">隐私政策</text>
<text class="atxt" @tap="viewdoc('prototal')">用户注册协议</text>
</view>
</view>
<!-- 登录按钮 -->
<view class="login-button" @click="handleLogin">
@ -212,9 +213,14 @@
}
},
//
gologin(){
this.$navTo("pages/login/index")
},
//
viewdoc(e){
this.$toast(e)
},
}
}
@ -319,5 +325,13 @@
.privacy{
display: flex;
margin-top: 10rpx;
.ckbox{
border-radius: 50%;
}
.atxt{
color: #4399ff;
}
}
</style>

Loading…
Cancel
Save