|
|
|
@ -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) |
|
|
|
}, |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
@ -317,7 +323,15 @@ |
|
|
|
} |
|
|
|
|
|
|
|
.privacy{ |
|
|
|
display: flex; |
|
|
|
margin-top: 10rpx; |
|
|
|
display: flex; |
|
|
|
margin-top: 10rpx; |
|
|
|
|
|
|
|
.ckbox{ |
|
|
|
border-radius: 50%; |
|
|
|
} |
|
|
|
|
|
|
|
.atxt{ |
|
|
|
color: #4399ff; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
|