|
@@ -125,7 +125,6 @@ export default {
|
|
|
|
|
|
// 获取微信绑定的手机号登录
|
|
|
async getPhoneNumber({detail}){
|
|
|
- if(!detail.encryptedData||!detail.iv) return
|
|
|
const res=await apiGetWechatPhone({
|
|
|
encryptedData:detail.encryptedData||'',
|
|
|
iv:detail.iv||'',
|
|
@@ -248,12 +247,23 @@ export default {
|
|
|
.login-page {
|
|
|
padding: 34rpx;
|
|
|
text-align: center;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ max-width: 500px;
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+ }
|
|
|
}
|
|
|
.top-img {
|
|
|
width: 140rpx;
|
|
|
height: 140rpx;
|
|
|
margin-top: 70rpx;
|
|
|
margin-bottom: 100rpx;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ width: 70px;
|
|
|
+ height: 70px;
|
|
|
+ margin-top: 35px;
|
|
|
+ margin-bottom: 50px;
|
|
|
+ }
|
|
|
}
|
|
|
.van-cell {
|
|
|
border-bottom: 1px solid $global-border-color;
|
|
@@ -273,6 +283,9 @@ export default {
|
|
|
}
|
|
|
.change-wrap{
|
|
|
margin-top: 100rpx;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ margin-top: 50px;
|
|
|
+ }
|
|
|
.text{
|
|
|
color: #CFCFCF;
|
|
|
display: flex;
|
|
@@ -285,6 +298,10 @@ export default {
|
|
|
display: inline-block;
|
|
|
background-color: #E1E2E6;
|
|
|
margin-right: 20rpx;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ width: 70px;
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
}
|
|
|
&::after{
|
|
|
content: '';
|
|
@@ -293,12 +310,21 @@ export default {
|
|
|
display: inline-block;
|
|
|
background-color: #E1E2E6;
|
|
|
margin-left: 20rpx;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ width: 70px;
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.img{
|
|
|
margin-top: 40rpx;
|
|
|
width: 80rpx;
|
|
|
height: 80rpx;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ margin-top: 20px;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.submit-btn {
|
|
@@ -306,6 +332,11 @@ export default {
|
|
|
margin-left: auto;
|
|
|
margin-right: auto;
|
|
|
margin-top: 100rpx;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ width: 245px;
|
|
|
+ margin-top: 50px;
|
|
|
+ line-height: 35px;
|
|
|
+ }
|
|
|
}
|
|
|
.bot-text{
|
|
|
position: fixed;
|
|
@@ -314,5 +345,8 @@ export default {
|
|
|
bottom: 100rpx;
|
|
|
color: $global-text-color-999;
|
|
|
width: 100%;
|
|
|
+ @media screen and (min-width: 700px){
|
|
|
+ bottom: 50px;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|