|
|
@ -22,7 +22,8 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
.u-checkbox-group{ |
|
|
|
margin-left:30rpx; |
|
|
|
justify-content: flex-end; |
|
|
|
margin:0 30rpx; |
|
|
|
} |
|
|
|
|
|
|
|
.res{ |
|
|
@ -49,9 +50,9 @@ |
|
|
|
<view class="item"> |
|
|
|
<text class="plant-icon2"/> <input placeholder="请输入密码" type="password" v-model="formData.password"/> |
|
|
|
</view> |
|
|
|
<!-- <u-checkbox-group v-model="demo" shape="circle"> |
|
|
|
<u-checkbox label="使用溯源系统账号登录并同步企业信息"/> |
|
|
|
</u-checkbox-group> --> |
|
|
|
<u-checkbox-group shape="circle"> |
|
|
|
<u-checkbox :checked="remember" label="记住账号" @click="remember=!remember"/> |
|
|
|
</u-checkbox-group> |
|
|
|
|
|
|
|
<button class="cu-btn round bg-green shadow submit" @click="login">登录</button> |
|
|
|
|
|
|
@ -80,7 +81,7 @@ import request,{host} from "@/common/request" |
|
|
|
export default { |
|
|
|
data(){ |
|
|
|
return{ |
|
|
|
demo:[], |
|
|
|
remember:false, |
|
|
|
|
|
|
|
formData:{ |
|
|
|
password:"", |
|
|
@ -103,7 +104,7 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
onLoad(options){ |
|
|
|
this.formData.username=options.phone||"" |
|
|
|
this.formData.username=options.phone||uni.getStorageSync('username')||"" |
|
|
|
if(process.env.NODE_ENV === 'development'){ |
|
|
|
this.formData.username="18788469459" |
|
|
|
this.formData.password="1qaz@WSX" |
|
|
@ -124,6 +125,9 @@ export default { |
|
|
|
}) |
|
|
|
if(res.statu){ |
|
|
|
this.$store.dispatch("getUserInfo",res.data.token) |
|
|
|
if(this.remember){ |
|
|
|
uni.setStorageSync('username',this.formData.username) |
|
|
|
} |
|
|
|
}else{ |
|
|
|
uni.showModal({ |
|
|
|
title:"提示", |
|
|
|