|
|
|
<template>
|
|
|
|
<view class="normal-login-container">
|
|
|
|
<view class="logo-img">
|
|
|
|
<u-icon name="close" size="40" class="icon" @click="$tab.reLaunch('/pages/index')"></u-icon>
|
|
|
|
<view class="logo-title">
|
|
|
|
<view>智慧设备管理综合系统</view>
|
|
|
|
<view>让设备管理更智能、更高效</view>
|
|
|
|
</view>
|
|
|
|
<image src="../static/images/banner/logo-banner.png" mode="widthFix"></image>
|
|
|
|
</view>
|
|
|
|
<view class="box">
|
|
|
|
<view class="box-shadow">
|
|
|
|
|
|
|
|
</view>
|
|
|
|
<view class="logo-content">
|
|
|
|
<text class="title">您好,欢迎登录</text>
|
|
|
|
</view>
|
|
|
|
<view class="login-form-content">
|
|
|
|
<view class="input-item-label">登录账号</view>
|
|
|
|
<view class="input-item flex align-center">
|
|
|
|
<input v-model="loginForm.username" class="input" type="text" placeholder="请输入账号" maxlength="30" />
|
|
|
|
</view>
|
|
|
|
<view class="input-item-label">登录密码</view>
|
|
|
|
<view class="input-item flex align-center">
|
|
|
|
<input v-model="loginForm.password" type="password" class="input" placeholder="请输入密码" maxlength="20" />
|
|
|
|
</view>
|
|
|
|
<view class="action-btn">
|
|
|
|
<button @click="handleLogin" class="login-btn cu-btn block bg-blue lg ">登录</button>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="xieyi text-center">
|
|
|
|
<text class="text-grey1">登录即代表同意</text>
|
|
|
|
<text @click="handleUserAgrement" class="text-blue">《用户协议》</text>
|
|
|
|
<text @click="handlePrivacy" class="text-blue">《隐私协议》</text>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import * as loginApi from "@/api/login"
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Login',
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
captchaEnabled: true, // 验证码开关 TODO 芋艿:需要抽到配置里
|
|
|
|
globalConfig: getApp().globalData.config,
|
|
|
|
loginForm: {
|
|
|
|
tenantName:"闻荫源码",
|
|
|
|
username: "admin",
|
|
|
|
password: "123456",
|
|
|
|
captchaVerification: "",
|
|
|
|
rememberMe:false,
|
|
|
|
code:'1',
|
|
|
|
uuid:"APP"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 隐私协议
|
|
|
|
handlePrivacy() {
|
|
|
|
let site = this.globalConfig.appInfo.agreements[0]
|
|
|
|
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
|
|
|
|
},
|
|
|
|
// 用户协议
|
|
|
|
handleUserAgrement() {
|
|
|
|
let site = this.globalConfig.appInfo.agreements[1]
|
|
|
|
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
|
|
|
|
},
|
|
|
|
// 登录方法
|
|
|
|
async handleLogin(params) {
|
|
|
|
if (this.loginForm.username === "") {
|
|
|
|
this.$modal.msgError("请输入您的账号")
|
|
|
|
} else if (this.loginForm.password === "") {
|
|
|
|
this.$modal.msgError("请输入您的密码")
|
|
|
|
} else {
|
|
|
|
await this.pwdLogin({})
|
|
|
|
// 显示验证码
|
|
|
|
// if (this.captchaEnabled) {
|
|
|
|
// this.$refs.verify.show()
|
|
|
|
// } else { // 直接登录
|
|
|
|
// await this.pwdLogin({})
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 密码登录
|
|
|
|
async pwdLogin(captchaParams) {
|
|
|
|
this.$modal.loading("登录中,请耐心等待...")
|
|
|
|
// 执行登录
|
|
|
|
this.$store.dispatch('Login', this.loginForm).then(async () => {
|
|
|
|
this.$modal.closeLoading()
|
|
|
|
await this.loginSuccess()
|
|
|
|
// this.$tab.reLaunch('/pages/index')
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 登录成功后,处理函数
|
|
|
|
async loginSuccess(result) {
|
|
|
|
// 设置用户信息
|
|
|
|
await this.$store.dispatch('GetPermissionInfo').then(res => {
|
|
|
|
// this.$tab.reLaunch('/pages/index')
|
|
|
|
})
|
|
|
|
await this.$store.dispatch('GetInfo').then(res => {
|
|
|
|
this.$tab.reLaunch('/pages/index')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
page {
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.normal-login-container {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.logo-content {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 40rpx;
|
|
|
|
padding: 50rpx 80rpx 0rpx;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #000000;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.box{
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.box-shadow{
|
|
|
|
box-shadow: 0px -10rpx 16rpx rgba(64, 158, 254, 0.5);
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
height: 30rpx;
|
|
|
|
border-radius: 30rpx 30rpx 0px 0px ;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-img {
|
|
|
|
background-color: #fafcff;
|
|
|
|
height: calc(var(--status-bar-height) + 400rpx);
|
|
|
|
position: relative;
|
|
|
|
.icon{
|
|
|
|
position: absolute;
|
|
|
|
top: calc(var(--status-bar-height) + 20rpx);
|
|
|
|
left: 40rpx;
|
|
|
|
}
|
|
|
|
.logo-title{
|
|
|
|
position: absolute;
|
|
|
|
left: 50rpx;
|
|
|
|
top: calc(var(--status-bar-height) + 80rpx);
|
|
|
|
z-index: 11;
|
|
|
|
view{
|
|
|
|
&:nth-child(1){
|
|
|
|
color: #409eff;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 36rpx;
|
|
|
|
}
|
|
|
|
&:nth-child(2){
|
|
|
|
color: #999999;
|
|
|
|
font-size: 24rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
image {
|
|
|
|
width: 75%;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-form-content {
|
|
|
|
margin: 40rpx auto;
|
|
|
|
width: 80%;
|
|
|
|
|
|
|
|
.input-item-label {
|
|
|
|
font-size: 30rpx;
|
|
|
|
// font-weight: bold;
|
|
|
|
color: #888888;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-item {
|
|
|
|
margin: 20rpx auto 40rpx;
|
|
|
|
border: 1px solid #E4E4E4;
|
|
|
|
padding: 0px 20rpx;
|
|
|
|
height: 90rpx;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
font-size: 38rpx;
|
|
|
|
margin-left: 20rpx;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 28rpx;
|
|
|
|
line-height: 40rpx;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-btn {
|
|
|
|
margin-top: 80rpx;
|
|
|
|
height: 80rpx;
|
|
|
|
background: #409eff;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.xieyi {
|
|
|
|
color: #333;
|
|
|
|
margin-top: 40rpx;
|
|
|
|
font-size: 24rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.easyinput {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-code-img {
|
|
|
|
height: 90rpx;
|
|
|
|
}
|
|
|
|
</style>
|