You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
3.0 KiB
124 lines
3.0 KiB
<template>
|
|
<view>
|
|
<image src="../../../static/img/logo.png" mode="widthFix" class="mart40 alijus imgs"></image>
|
|
<view class="main mart40">
|
|
<wInput v-model="phoneData" type="text" placeholder="用户名"></wInput>
|
|
<wInput v-model="passData" type="password" placeholder="密码" isShowPass="true"></wInput>
|
|
</view>
|
|
<view class="height40p"></view>
|
|
<wButton class="wbutton mart20" text="登 录" bgColor="#089bf5" :rotate="isRotate" @click="startLogin"></wButton>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import wInput from '../../../components/watch-login/watch-input.vue' //input
|
|
import wButton from '../../../components/watch-login/watch-button.vue' //button
|
|
import {
|
|
userLogin
|
|
} from '../../../Utils/Api.js'
|
|
let app = getApp();
|
|
export default {
|
|
components: {
|
|
wInput,
|
|
wButton,
|
|
},
|
|
data() {
|
|
return {
|
|
phoneData: '', //用户/电话
|
|
passData: '', //密码
|
|
isRotate: false, //是否加载旋转
|
|
}
|
|
},
|
|
mounted() {
|
|
this.isLogin();
|
|
},
|
|
methods: {
|
|
//判断缓存中是否登录过,直接登录
|
|
isLogin() {
|
|
uni.getStorage({
|
|
key: 'oilaccount',
|
|
success: (res) => {
|
|
this.phoneData = res.data
|
|
}
|
|
});
|
|
uni.getStorage({
|
|
key: 'oilpass',
|
|
success: (res) => {
|
|
this.passData = res.data
|
|
}
|
|
});
|
|
},
|
|
//登录
|
|
startLogin(e) {
|
|
uni.showLoading({
|
|
title: '登录中'
|
|
});
|
|
if (this.isRotate) {
|
|
//判断是否加载中,避免重复点击请求
|
|
return false;
|
|
}
|
|
if (this.phoneData.length == "") {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
position: 'bottom',
|
|
title: '用户名不能为空'
|
|
});
|
|
return;
|
|
}
|
|
this.isRotate = true
|
|
let params = {
|
|
loginName: this.phoneData,
|
|
password: this.passData
|
|
}
|
|
userLogin(params).then(res => {
|
|
uni.hideLoading();
|
|
this.isRotate = false;
|
|
if (res.return_code == '000000' && res.return_data) {
|
|
app.globalData.userInfo = res.return_data
|
|
.object;
|
|
if (res.return_data.object.gasStaff) {
|
|
app.globalData.positionType = res.return_data.object.gasStaff.positionType;
|
|
}
|
|
app.globalData.token = res.return_data.uniqueCode;
|
|
uni.setStorage({
|
|
key: "oiluser",
|
|
data: res.return_data
|
|
.object
|
|
})
|
|
uni.setStorage({
|
|
key: "oiltoken",
|
|
data: res.return_data.uniqueCode
|
|
})
|
|
uni.setStorage({
|
|
key: "oilaccount",
|
|
data: this.phoneData
|
|
})
|
|
uni.setStorage({
|
|
key: "oilpass",
|
|
data: this.passData
|
|
})
|
|
uni.reLaunch({
|
|
url: '../../tabBar/home/home'
|
|
})
|
|
} else {
|
|
uni.showToast({
|
|
title: res.return_msg,
|
|
icon: 'none',
|
|
duration: 2000
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.imgs {
|
|
width: 30%;
|
|
margin-left: 35%;
|
|
}
|
|
|
|
@import url("../../../components/watch-login/css/icon.css");
|
|
@import url("../css/main.css");
|
|
</style>
|
|
|