2023-02-28 01:16:49 +08:00
|
|
|
|
<!--
|
|
|
|
|
* @Author: Kane
|
|
|
|
|
* @Date: 2023-02-28 00:57:21
|
|
|
|
|
* @LastEditors: Kane
|
2023-03-02 19:48:08 +08:00
|
|
|
|
* @FilePath: /task_schedule/src/views/Login.vue
|
2023-02-28 01:16:49 +08:00
|
|
|
|
* @Description:
|
2023-02-28 19:58:03 +08:00
|
|
|
|
* 登录页面,路由默认指向这个页面
|
|
|
|
|
* 1、判断url中的参数,取得用户信息,根据用户的部门改变路由
|
2023-02-28 01:16:49 +08:00
|
|
|
|
*
|
|
|
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
2023-03-02 16:59:48 +08:00
|
|
|
|
<div class="page-wrapper">
|
|
|
|
|
<div class="login-wrapper">
|
2023-03-03 00:33:30 +08:00
|
|
|
|
<h1>登 录</h1>
|
2023-03-02 16:59:48 +08:00
|
|
|
|
<el-form ref="loginForm">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<label class="form-label">用户名</label>
|
|
|
|
|
<el-input type="text" v-model.trim.lazy="ui.account" placeholder="请输入P13账号或P09工号"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<label class="form-label">密码</label>
|
2023-03-02 19:48:08 +08:00
|
|
|
|
<el-input type="password" v-model.trim.lazy="ui.password" placeholder="请输入P13密码"></el-input>
|
2023-03-02 16:59:48 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
2023-03-02 19:48:08 +08:00
|
|
|
|
<el-button type="primary" class="el-button-block" @click="onLogin">
|
2023-03-02 16:59:48 +08:00
|
|
|
|
登录
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
2023-03-02 19:48:08 +08:00
|
|
|
|
<span>{{ ui.tips }}</span>
|
2023-03-02 16:59:48 +08:00
|
|
|
|
</div>
|
2023-03-01 17:31:20 +08:00
|
|
|
|
</div>
|
2023-02-28 01:16:49 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
2023-03-02 19:48:08 +08:00
|
|
|
|
import { reactive, onBeforeMount } from "vue";
|
|
|
|
|
import { loadStaffInfo, saveStaffInfo } from "@/utils/api/localStorage";
|
|
|
|
|
import { login } from "@/utils/account";
|
|
|
|
|
import { ElMessage } from "element-plus";
|
|
|
|
|
import { StaffInfo } from "@/data/cpicxim/StaffInfo";
|
2023-02-28 09:30:02 +08:00
|
|
|
|
|
2023-02-28 01:16:49 +08:00
|
|
|
|
export default {
|
2023-02-28 09:30:02 +08:00
|
|
|
|
name: "LoginPage",
|
|
|
|
|
setup()
|
2023-02-28 01:16:49 +08:00
|
|
|
|
{
|
2023-02-28 09:30:02 +08:00
|
|
|
|
const ui = reactive({
|
2023-03-02 16:59:48 +08:00
|
|
|
|
account: "",
|
2023-03-02 19:48:08 +08:00
|
|
|
|
password: "",
|
|
|
|
|
tips: "",
|
2023-03-01 17:31:20 +08:00
|
|
|
|
showNeedAccountTip: false,
|
2023-03-02 00:35:21 +08:00
|
|
|
|
showAccountErrorTip: false,
|
2023-02-28 09:30:02 +08:00
|
|
|
|
});
|
|
|
|
|
|
2023-03-02 16:59:48 +08:00
|
|
|
|
const savedP13uid = () =>
|
2023-03-01 17:31:20 +08:00
|
|
|
|
{
|
2023-03-02 16:59:48 +08:00
|
|
|
|
window.localStorage.setItem("stuff_account", ui.account);
|
2023-03-02 19:48:08 +08:00
|
|
|
|
};
|
2023-03-02 16:59:48 +08:00
|
|
|
|
|
2023-03-02 19:48:08 +08:00
|
|
|
|
const onLogin = () =>
|
|
|
|
|
{
|
|
|
|
|
const info = {
|
|
|
|
|
p13account: ui.account,
|
|
|
|
|
password: ui.password,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
login(info)
|
|
|
|
|
.then((response) =>
|
|
|
|
|
{
|
|
|
|
|
const data = response.data || { success: false, };
|
|
|
|
|
|
|
|
|
|
if (data.success == true)
|
|
|
|
|
{
|
|
|
|
|
//提示登录成功,并保存到localStorage,然后路由跳转
|
|
|
|
|
ElMessage({
|
|
|
|
|
message: data.message,
|
|
|
|
|
type: "success",
|
|
|
|
|
center: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const staffInfo = new StaffInfo(
|
|
|
|
|
data.staff_info.p13uid || "",
|
|
|
|
|
data.staff_info.code || "",
|
|
|
|
|
data.staff_info.name || "",
|
|
|
|
|
data.staff_info.department_code || "",
|
|
|
|
|
data.staff_info.department_name || "",
|
|
|
|
|
data.staff_info.section_office_code || "",
|
|
|
|
|
data.staff_info.p13section_office_nameuid || ""
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
saveStaffInfo(staffInfo);
|
|
|
|
|
|
|
|
|
|
//跳转路由
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ElMessage({
|
|
|
|
|
message: data.message,
|
|
|
|
|
type: "error",
|
|
|
|
|
center: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log(data);
|
|
|
|
|
})
|
|
|
|
|
.catch((error) =>
|
|
|
|
|
{
|
|
|
|
|
debugger;
|
|
|
|
|
console.log(`登录失败,返回信息:${error}`);
|
|
|
|
|
});
|
2023-03-02 16:59:48 +08:00
|
|
|
|
};
|
2023-02-28 01:16:49 +08:00
|
|
|
|
|
2023-03-02 19:48:08 +08:00
|
|
|
|
onBeforeMount(() =>
|
|
|
|
|
{
|
|
|
|
|
const staffInfo = loadStaffInfo();
|
|
|
|
|
|
|
|
|
|
if (staffInfo.P13UID)
|
|
|
|
|
{
|
|
|
|
|
ElMessage({
|
|
|
|
|
message: `已登录账号:${staffInfo.stuffName}`,
|
|
|
|
|
type: "success",
|
|
|
|
|
center: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
2023-03-02 16:59:48 +08:00
|
|
|
|
|
|
|
|
|
// setInterval(() =>
|
|
|
|
|
// {
|
|
|
|
|
// window.location.reload();
|
|
|
|
|
// }, 5000);
|
|
|
|
|
|
2023-03-02 19:48:08 +08:00
|
|
|
|
return { ui, savedP13uid, onLogin, };
|
2023-02-28 01:16:49 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
2023-03-02 16:59:48 +08:00
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.page-wrapper {
|
2023-03-01 17:31:20 +08:00
|
|
|
|
box-sizing: border-box;
|
2023-03-02 00:35:21 +08:00
|
|
|
|
height: calc(100vh - 10mm);
|
|
|
|
|
width: calc(100vw - 10mm);
|
2023-03-02 19:48:08 +08:00
|
|
|
|
// border: 1px solid red;
|
2023-03-01 17:31:20 +08:00
|
|
|
|
display: flex;
|
2023-03-02 19:48:08 +08:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
2023-03-02 16:59:48 +08:00
|
|
|
|
span {
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-wrapper {
|
2023-03-02 19:48:08 +08:00
|
|
|
|
box-sizing: border-box;
|
2023-03-02 16:59:48 +08:00
|
|
|
|
width: 320px;
|
|
|
|
|
// margin-top: 5cm auto auto auto;
|
2023-03-02 19:48:08 +08:00
|
|
|
|
margin-top: calc(100vh * 0.05);
|
|
|
|
|
padding: 10mm;
|
2023-03-02 16:59:48 +08:00
|
|
|
|
background-color: #cac2c27f;
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
// backdrop-filter: ;
|
2023-03-03 00:33:30 +08:00
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-family: "FZ-ZHUOHEI";
|
|
|
|
|
font-size: 70px;
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
color: #fff;
|
|
|
|
|
margin: 5mm 0;
|
|
|
|
|
display: block;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-shadow: #1d6ddc 2px 10px,
|
|
|
|
|
#1d6ddc 2px 0px,
|
|
|
|
|
#1d6ddc -2px -0px,
|
|
|
|
|
#1d6ddc -0px -2px,
|
|
|
|
|
#1d6ddc -1.4px -1.4px,
|
|
|
|
|
#1d6ddc 1.4px 1.4px,
|
|
|
|
|
#1d6ddc 1.4px -1.4px,
|
|
|
|
|
#1d6ddc -1.4px 1.4px;
|
|
|
|
|
|
|
|
|
|
}
|
2023-03-02 16:59:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-label {
|
|
|
|
|
display: block;
|
|
|
|
|
/* color: #fff; */
|
|
|
|
|
color: #344a5fef;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
// border: 1px solid red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-input {
|
|
|
|
|
color: #344a5fef;
|
2023-03-01 17:31:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-02 16:59:48 +08:00
|
|
|
|
.el-button-block {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-top: 20px;
|
2023-03-01 17:31:20 +08:00
|
|
|
|
}
|
|
|
|
|
</style>
|