sadjv3_user/pages/publicThree/loginphone.vue

195 lines
4.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="container">
<view class="wrapper">
<!-- <view style="text-align: center;">
<image src="../../static/logo.png" style="border-radius: 64upx;"></image>
</view>
-->
<view class="input-content">
<view class="cu-form-group"
style="border: 2upx solid whitesmoke;margin-bottom: 20px;border-radius: 30px">
<view class="title text-black">账号</view>
<input type="number" :value="phone" placeholder="请输入手机号" maxlength="11" data-key="phone"
@input="inputChange" />
</view>
<view class="cu-form-group" style="border: 2upx solid whitesmoke;border-radius: 30px">
<view class="title text-black">密码</view>
<input type="password" placeholder="请输入密码" maxlength="20" :value="password" data-key="password"
@input="inputChange" @confirm="toLogin" />
<text class="send-msg" @click="forget">忘记密码</text>
</view>
</view>
<button class="confirm-btn" @click="toLogin">登录</button>
<view style="margin-top: 32rpx;text-align: center">
<view><text style="font-size: 28upx;">没有账号</text>
<text style="color: #019c88" @click="register()">立即注册</text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
phone: '',
password: '',
banners: [],
invitation: '',
loginName: '',
sending: false,
sendTime: '获取验证码',
count: 60,
}
},
onLoad() {
},
methods: {
forget() {
uni.navigateTo({
url: '/pages/publicThree/forgetPwd'
});
},
register() {
uni.navigateTo({
url: '/pages/publicThree/register'
});
},
inputChange(e) {
const key = e.currentTarget.dataset.key;
this[key] = e.detail.value;
},
navBack() {
uni.navigateBack();
},
toLogin() {
this.$queue.loginClear();
let openid = this.$queue.getData("openid");
const {
phone,
password
} = this;
if (!phone) {
this.$queue.showToast("请输入手机号");
} else if (phone.length != 11) {
this.$queue.showToast("请输入正确的手机号");
} else if (!password) {
this.$queue.showToast("请输入密码");
} else {
this.$queue.showLoading("正在登录中...");
this.$Request.post("/app/Login/loginApp", {
password: password,
phone: phone,
openId: this.$queue.getData('openid') ? this.$queue.getData('openid') : ''
}).then(res => {
if (res.code == 0) {
this.$queue.setData("userId", res.user.userId);
this.$queue.setData("token", res.token);
this.$queue.setData("phone", res.user.phone);
this.$queue.setData("userName", res.user.userName);
this.$queue.setData("avatar", res.user.avatar);
this.$queue.setData("invitationCode", res.user.invitationCode);
this.$queue.setData("inviterCode", res.user.inviterCode);
this.getIsVip('624')
uni.hideLoading();
uni.navigateTo({
url: '/pages/my/hehuo'
});
} else {
uni.hideLoading();
this.$queue.showToast(res.msg);
}
});
}
},
getIsVip(id) {
var data={
userId:id
}
this.$Request.get("/app/VipDetails/getVipDetailByUser",data).then(res => {
if (res.code == 0) {
this.isVipData = res.data
this.$queue.setData("isVIP", this.isVipData);
console.log("isVIP",this.$queue.getData('isVIP'))
}
});
}
},
}
</script>
<style lang='scss'>
page {
height: 100%;
background: #F5F5F5 !important;
}
.bg {
background-color: #FFFFFF;
}
.send-msg {
color: #000000;
height: 30px;
font-size: 14px;
line-height: 30px;
}
.container {
top: 0;
padding-top: 32upx;
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
background: #FFFFFF !important;
}
.cu-form-group{
background-color: #f7f7f7;
}
.cu-form-group .title{
font-size: 29rpx;
color: #333;
}
.cu-form-group uni-input{
font-size: 29rpx;
color: #999999;
}
.wrapper {
position: relative;
z-index: 90;
background: #FFFFFF;
padding-bottom: 32upx;
}
.input-content {
/* margin-top: 300upx; */
/* padding-top: 300upx; */
padding: 32upx 80upx;
}
.confirm-btn {
width: 600upx;
height: 80upx;
line-height: 80upx;
border-radius: 60upx;
margin-top: 32upx;
background: linear-gradient(to right, #019c88, #31c194);
color: #fff;
font-size: 30upx;
&:after {
border-radius: 60px;
}
}
</style>