|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<block v-if="loginWay==1">
|
|
|
|
|
<view class="cu-form-group margin-top shadow-warp input" :class="[shape=='round'?'round':'']">
|
|
|
|
|
<view class="title"><text class="cuIcon-people margin-right-xs"></text>账号:</view>
|
|
|
|
|
<input placeholder="请输入账号" name="input" v-model="userName"></input>
|
|
|
|
|
<input placeholder="请输入账号" name="input" v-model="username"></input>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="cu-form-group margin-top shadow-warp input" :class="[shape=='round'?'round':'']">
|
|
|
|
|
<view class="title"><text class="cuIcon-lock margin-right-xs"></text>密码:</view>
|
|
|
|
@ -14,6 +14,17 @@
|
|
|
|
|
<text :class="[showPassword ? 'cuIcon-attention' : 'cuIcon-attentionforbid']" @click="changePassword"></text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="rember flex flex-row-end flex-col-end">
|
|
|
|
|
<u-checkbox-group v-model="checkBox">
|
|
|
|
|
<u-checkbox
|
|
|
|
|
|
|
|
|
|
label="记住密码"
|
|
|
|
|
name="1"
|
|
|
|
|
>
|
|
|
|
|
</u-checkbox>
|
|
|
|
|
</u-checkbox-group>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
<view class="padding text-center margin-top">
|
|
|
|
|
<button style="width: 100%;" class="cu-btn bg-gr1 lg margin-right shadow" :loading="loading" :class="[shape=='round'?'round':'']"
|
|
|
|
|
@tap="onLogin"><text space="emsp">{{loading ? "登录中...":" 登录 "}}</text>
|
|
|
|
@ -22,6 +33,7 @@
|
|
|
|
|
@tap="loginWay=3-loginWay">短信登录
|
|
|
|
|
</button> -->
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</block>
|
|
|
|
|
<!-- <block v-else>
|
|
|
|
|
<view class="cu-form-group margin-top shadow-warp" :class="[shape=='round'?'round':'']">
|
|
|
|
@ -78,9 +90,10 @@
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
checkBox: [],
|
|
|
|
|
shape:'',//round 圆形
|
|
|
|
|
loading: false,
|
|
|
|
|
userName: 'admin',
|
|
|
|
|
username: 'admin',
|
|
|
|
|
password: '',
|
|
|
|
|
phoneNo: '',
|
|
|
|
|
smsCode: '',
|
|
|
|
@ -97,12 +110,18 @@
|
|
|
|
|
bindingPhoneModal:false,
|
|
|
|
|
thirdUserUuid:'',
|
|
|
|
|
imageURL: '@/static/long_2.png',
|
|
|
|
|
url: {
|
|
|
|
|
bindingThirdPhone: '/sys/thirdLogin/bindingThirdPhone'
|
|
|
|
|
}
|
|
|
|
|
// url: {
|
|
|
|
|
// bindingThirdPhone: '/sys/thirdLogin/bindingThirdPhone'
|
|
|
|
|
// }
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onLoad:function(){
|
|
|
|
|
const info = uni.getStorageSync('_usr_info')
|
|
|
|
|
if (info) {
|
|
|
|
|
this.password = info.password
|
|
|
|
|
this.username = info.username
|
|
|
|
|
this.checkBox = ['1']
|
|
|
|
|
}
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
var that=this
|
|
|
|
|
plus.runtime.getProperty( plus.runtime.appid, function ( wgtinfo ) {
|
|
|
|
@ -122,16 +141,16 @@
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
canSMSLogin() {
|
|
|
|
|
return this.userName.length > 4 && this.smsCode.length > 4;
|
|
|
|
|
return this.username.length > 4 && this.smsCode.length > 4;
|
|
|
|
|
},
|
|
|
|
|
canPwdLogin() {
|
|
|
|
|
return this.userName.length > 4 && this.password.length > 4;
|
|
|
|
|
return this.username.length > 4 && this.password.length > 4;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
...mapActions([ "mLogin","PhoneLogin","ThirdLogin" ]),
|
|
|
|
|
onLogin: function (){
|
|
|
|
|
if(!this.userName || this.userName.length==0){
|
|
|
|
|
if(!this.username || this.username.length==0){
|
|
|
|
|
this.$tip.toast('请填写用户名');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
@ -140,13 +159,18 @@
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let loginParams = {
|
|
|
|
|
username:this.userName,
|
|
|
|
|
username:this.username,
|
|
|
|
|
password:this.password
|
|
|
|
|
}
|
|
|
|
|
this.loading=true;
|
|
|
|
|
this.mLogin(loginParams).then((res) => {
|
|
|
|
|
this.loading=false;
|
|
|
|
|
if(res.data.success){
|
|
|
|
|
if (this.checkBox.length) {
|
|
|
|
|
uni.setStorageSync('_usr_info', loginParams)
|
|
|
|
|
} else {
|
|
|
|
|
uni.removeStorageSync('_usr_info')
|
|
|
|
|
}
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
this.saveClientId()
|
|
|
|
|
// #endif
|
|
|
|
@ -257,6 +281,10 @@
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.rember {
|
|
|
|
|
margin-top: 20upx;
|
|
|
|
|
font-size: 28upx !important;
|
|
|
|
|
}
|
|
|
|
|
.compony {
|
|
|
|
|
font-size: 24upx;
|
|
|
|
|
transform: scale(0.9);
|
|
|
|
|