|
|
|
@ -21,7 +21,19 @@
|
|
|
|
|
</view> |
|
|
|
|
<view class="login-button-container"> |
|
|
|
|
<u-button |
|
|
|
|
v-if="privateStatus" |
|
|
|
|
v-if="!isRead" |
|
|
|
|
type="success" |
|
|
|
|
size="normal" |
|
|
|
|
shape="circle" |
|
|
|
|
color="#45C55E" |
|
|
|
|
height="88" |
|
|
|
|
@click="readTip()" |
|
|
|
|
> |
|
|
|
|
<!-- <u-icon name="weixin-fill" size="50" color="#fff" class="weixin-icon"></u-icon>--> |
|
|
|
|
<u-text text="手机号快捷登录" color="#fff" size="32" align="center" custom-style="display:inline;"></u-text> |
|
|
|
|
</u-button> |
|
|
|
|
<u-button |
|
|
|
|
v-else-if="privateStatus" |
|
|
|
|
type="success" |
|
|
|
|
size="normal" |
|
|
|
|
@getphonenumber="wxLogin" |
|
|
|
@ -46,9 +58,12 @@
|
|
|
|
|
<u-text text="手机号快捷登录" color="#fff" size="32" align="center" custom-style="display:inline;"></u-text> |
|
|
|
|
</u-button> |
|
|
|
|
</view> |
|
|
|
|
<view class="privacy-container row"> |
|
|
|
|
<view class="privacy-container row" style="justify-content:center;align-items: center;"> |
|
|
|
|
<view class="checkbox"> |
|
|
|
|
<u-checkbox :checked="isRead" @change="isRead = !isRead" shape="circle" active-color="#4DC3B8" icon-size="30rpx" size="40rpx"></u-checkbox> |
|
|
|
|
</view> |
|
|
|
|
<view class="text"> |
|
|
|
|
<u-text text="登录/注册即视为你同意" color="#999999" size="24"></u-text> |
|
|
|
|
<u-text text="已阅读并同意" color="#999999" size="24"></u-text> |
|
|
|
|
</view> |
|
|
|
|
<view class="text"> |
|
|
|
|
<u-text text="《小程序隐私保护指引》" color="#178AF2" size="24" @click="openPrivacyContract"></u-text> |
|
|
|
@ -115,6 +130,7 @@ import {extend} from "dayjs";
|
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
isRead:false, |
|
|
|
|
title: ' 登录', |
|
|
|
|
loading: true, |
|
|
|
|
staticImage: { |
|
|
|
@ -137,6 +153,9 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
readTip(){ |
|
|
|
|
uni.showToast({title:'请同意隐私协议',icon:'error'}) |
|
|
|
|
}, |
|
|
|
|
login(){ |
|
|
|
|
testLogin({ |
|
|
|
|
user_id:1 |
|
|
|
|