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

Loading…
Cancel
Save