|
|
|
@ -4,7 +4,7 @@ |
|
|
|
<!-- 页面头部 --> |
|
|
|
<view class="header"> |
|
|
|
<view class="title"> |
|
|
|
<text>登录</text> |
|
|
|
<text>注册</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- 表单 --> |
|
|
|
@ -28,16 +28,6 @@ |
|
|
|
</view> |
|
|
|
</radio-group> |
|
|
|
|
|
|
|
<!-- 登录按钮 --> |
|
|
|
<view class="login-button" @click="handleLogin"> |
|
|
|
<text>登录</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- 找回密码 注册 --> |
|
|
|
<view class="fdreg"> |
|
|
|
<text class="findpass">找回密码</text> |
|
|
|
<text class="regnow">立即注册</text> |
|
|
|
</view> |
|
|
|
<!-- 隐私政策等 --> |
|
|
|
<div class="privacy"> |
|
|
|
<label> |
|
|
|
@ -45,6 +35,17 @@ |
|
|
|
我已阅读并同意网站的 《隐私政策》和 《用户注册协议》 |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- 登录按钮 --> |
|
|
|
<view class="login-button" @click="handleLogin"> |
|
|
|
<text>注册</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- 找回密码 注册 --> |
|
|
|
<view class="regtips"> |
|
|
|
<view>已拥有账户?<a class="loginnow" @click="gologin">登录</a></view> |
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
@ -209,7 +210,11 @@ |
|
|
|
} else { |
|
|
|
this.$navTo('pages/index/index') |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
gologin(){ |
|
|
|
this.$navTo("pages/login/index") |
|
|
|
}, |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
@ -287,32 +292,28 @@ |
|
|
|
color: #fff; |
|
|
|
// border-radius: 80rpx; |
|
|
|
box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); |
|
|
|
letter-spacing: 5rpx; |
|
|
|
letter-spacing: 15rpx; |
|
|
|
display: flex; |
|
|
|
justify-content: center; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
// 找回密码和 立即注册 |
|
|
|
.fdreg{ |
|
|
|
.regtips{ |
|
|
|
display: flex; |
|
|
|
margin-top: 26rpx; |
|
|
|
line-height: 1.4; |
|
|
|
color:#ff0000; |
|
|
|
padding-left: 32rpx; |
|
|
|
padding-right: 32rpx; |
|
|
|
|
|
|
|
text{ |
|
|
|
display: block; |
|
|
|
float: left; |
|
|
|
width: 46%; |
|
|
|
.loginnow{ |
|
|
|
color: #5299dc; |
|
|
|
|
|
|
|
&:hover{ |
|
|
|
color: #a60000; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.findpass{ |
|
|
|
text-align: left; |
|
|
|
} |
|
|
|
.regnow{ |
|
|
|
text-align: right; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.privacy{ |
|
|
|
|