mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-23 21:36:39 +08:00
149 lines
3.0 KiB
Vue
149 lines
3.0 KiB
Vue
<template>
|
|
<view>
|
|
<view class="login-nav flex justify-center align-center">
|
|
<text>
|
|
请登录
|
|
</text>
|
|
</view>
|
|
<scroll-view :scroll-y="true">
|
|
<view class="flex justify-center logo">
|
|
<view class="cu-avatar xl round lage-avatar logo-lage" :style="'background-image:url('+logoUrl+');'">
|
|
</view>
|
|
</view>
|
|
<view class="margin-top">
|
|
<view class="cu-form-group margin-top">
|
|
<view class="title">用户名</view>
|
|
<input placeholder="请输入用户名" name="input" v-model="username"></input>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">密码</view>
|
|
<input placeholder="请输入密码" type="password" name="input" v-model="password"></input>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="padding flex flex-direction">
|
|
<button class="cu-btn bg-blue margin-tb-sm lg" @tap="doLogin()">登录</button>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
login,
|
|
reLogin
|
|
} from '../../lib/java110/api/Java110SessionApi.js'
|
|
import conf from '../../conf/config.js';
|
|
import {
|
|
getCurrentCommunity,getCommunity
|
|
} from '../../api/community/community.js'
|
|
import {
|
|
isNull
|
|
} from '../../lib/java110/utils/StringUtil.js'
|
|
import {
|
|
listStaffPrivileges
|
|
} from '../../api/index/index.js'
|
|
import mapping from '../../constant/mapping.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
logoUrl: '',
|
|
username: '18909711443',
|
|
password: '18909711443'
|
|
}
|
|
},
|
|
onLoad() {
|
|
uni.hideTabBar({
|
|
animation: false
|
|
});
|
|
reLogin();
|
|
|
|
this.logoUrl = conf.baseUrl + 'logo.png';
|
|
|
|
},
|
|
onBackPress(options) {
|
|
if (options.from === 'navigateBack') {
|
|
return false;
|
|
}
|
|
plus.runtime.quit();
|
|
return true;
|
|
},
|
|
methods: {
|
|
|
|
doLogin: function() {
|
|
let _that = this;
|
|
if (this.username == '') {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: "用户名不能为空"
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (this.password == '') {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: "密码不能为空"
|
|
});
|
|
return;
|
|
}
|
|
|
|
login(this.username, this.password)
|
|
.then(res => {
|
|
return res;
|
|
|
|
}, err => {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: err
|
|
});
|
|
}).then((_data) => {
|
|
listStaffPrivileges(_that);
|
|
return getCommunity(true);
|
|
}).then(function(_communitys) {
|
|
if(!_communitys || _communitys.length <1){
|
|
uni.showToast({
|
|
icon:'none',
|
|
title:'员工未分配小区'
|
|
});
|
|
return;
|
|
}
|
|
//随机放一个小区
|
|
let _tmpCommunityInfo = _communitys[0];
|
|
uni.setStorageSync(mapping.CURRENT_COMMUNITY_INFO, JSON.stringify(
|
|
_tmpCommunityInfo));
|
|
uni.reLaunch({
|
|
url: '/pages/index/index'
|
|
})
|
|
})
|
|
},
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.logo {
|
|
margin-top: 160upx;
|
|
margin-bottom: 140upx;
|
|
}
|
|
|
|
.logo .logo-lage {
|
|
height: 180upx;
|
|
width: 180upx;
|
|
}
|
|
|
|
.login-nav {
|
|
background-color: #368CFE;
|
|
height: 120upx;
|
|
}
|
|
|
|
.login-nav text {
|
|
color: #FFFFFF;
|
|
font-size: 30upx;
|
|
}
|
|
</style>
|