2020-12-27 14:55:27 +08:00
|
|
|
|
<template>
|
2021-03-15 12:44:58 +08:00
|
|
|
|
<el-form class="login-content-form">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-input
|
|
|
|
|
type="text"
|
2021-04-01 11:13:38 +08:00
|
|
|
|
:placeholder="$t('message.account.accountPlaceholder1')"
|
2021-03-15 12:44:58 +08:00
|
|
|
|
prefix-icon="el-icon-user"
|
|
|
|
|
v-model="ruleForm.userName"
|
|
|
|
|
clearable
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
2021-04-01 11:13:38 +08:00
|
|
|
|
<el-input
|
|
|
|
|
type="password"
|
|
|
|
|
:placeholder="$t('message.account.accountPlaceholder2')"
|
|
|
|
|
prefix-icon="el-icon-lock"
|
|
|
|
|
v-model="ruleForm.password"
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
show-password
|
|
|
|
|
>
|
2021-03-15 12:44:58 +08:00
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-row :gutter="15">
|
|
|
|
|
<el-col :span="16">
|
|
|
|
|
<el-input
|
|
|
|
|
type="text"
|
|
|
|
|
maxlength="4"
|
2021-04-01 11:13:38 +08:00
|
|
|
|
:placeholder="$t('message.account.accountPlaceholder3')"
|
2021-03-15 12:44:58 +08:00
|
|
|
|
prefix-icon="el-icon-position"
|
|
|
|
|
v-model="ruleForm.code"
|
|
|
|
|
clearable
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<div class="login-content-code">
|
|
|
|
|
<span class="login-content-code-img">1234</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
2021-03-25 18:07:15 +08:00
|
|
|
|
<el-button type="primary" class="login-content-submit" round @click="onSignIn" :loading="loading.signIn">
|
2021-04-01 11:13:38 +08:00
|
|
|
|
<span>{{ $t('message.account.accountBtnText') }}</span>
|
2021-03-15 12:44:58 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
2020-12-27 14:55:27 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-03-15 12:44:58 +08:00
|
|
|
|
import { toRefs, reactive, defineComponent, computed } from 'vue';
|
|
|
|
|
import { useRouter } from 'vue-router';
|
|
|
|
|
import { ElMessage } from 'element-plus';
|
2021-04-01 11:13:38 +08:00
|
|
|
|
import { useI18n } from 'vue-i18n';
|
2021-04-23 15:30:32 +08:00
|
|
|
|
import { initAllFun, initBackEndControlRoutesFun } from '/@/router/index.ts';
|
2021-03-15 12:44:58 +08:00
|
|
|
|
import { useStore } from '/@/store/index.ts';
|
|
|
|
|
import { setSession } from '/@/utils/storage.ts';
|
|
|
|
|
import { formatAxis } from '/@/utils/formatTime.ts';
|
2020-12-27 14:55:27 +08:00
|
|
|
|
export default defineComponent({
|
2021-03-15 12:44:58 +08:00
|
|
|
|
name: 'login',
|
|
|
|
|
setup() {
|
2021-04-01 11:13:38 +08:00
|
|
|
|
const { t } = useI18n();
|
2021-03-15 12:44:58 +08:00
|
|
|
|
const store = useStore();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
const state = reactive({
|
|
|
|
|
ruleForm: {
|
|
|
|
|
userName: 'admin',
|
|
|
|
|
password: '123456',
|
|
|
|
|
code: '1234',
|
|
|
|
|
},
|
2021-03-25 18:07:15 +08:00
|
|
|
|
loading: {
|
|
|
|
|
signIn: false,
|
|
|
|
|
},
|
2021-03-15 12:44:58 +08:00
|
|
|
|
});
|
|
|
|
|
// 时间获取
|
|
|
|
|
const currentTime = computed(() => {
|
|
|
|
|
return formatAxis(new Date());
|
|
|
|
|
});
|
|
|
|
|
// 登录
|
2021-04-23 15:30:32 +08:00
|
|
|
|
const onSignIn = async () => {
|
2021-03-25 18:07:15 +08:00
|
|
|
|
state.loading.signIn = true;
|
2021-03-15 12:44:58 +08:00
|
|
|
|
let defaultAuthPageList: Array<string> = [];
|
|
|
|
|
let defaultAuthBtnList: Array<string> = [];
|
|
|
|
|
// admin 页面权限标识,对应路由 meta.auth
|
|
|
|
|
let adminAuthPageList: Array<string> = ['admin'];
|
|
|
|
|
// admin 按钮权限标识
|
|
|
|
|
let adminAuthBtnList: Array<string> = ['btn.add', 'btn.del', 'btn.edit', 'btn.link'];
|
|
|
|
|
// test 页面权限标识,对应路由 meta.auth
|
|
|
|
|
let testAuthPageList: Array<string> = ['test'];
|
|
|
|
|
// test 按钮权限标识
|
|
|
|
|
let testAuthBtnList: Array<string> = ['btn.add', 'btn.link'];
|
|
|
|
|
if (state.ruleForm.userName === 'admin') {
|
|
|
|
|
defaultAuthPageList = adminAuthPageList;
|
|
|
|
|
defaultAuthBtnList = adminAuthBtnList;
|
|
|
|
|
} else {
|
|
|
|
|
defaultAuthPageList = testAuthPageList;
|
|
|
|
|
defaultAuthBtnList = testAuthBtnList;
|
|
|
|
|
}
|
2021-04-23 15:30:32 +08:00
|
|
|
|
// 用户信息模拟数据
|
2021-03-15 12:44:58 +08:00
|
|
|
|
const userInfos = {
|
|
|
|
|
userName: state.ruleForm.userName,
|
|
|
|
|
photo:
|
|
|
|
|
state.ruleForm.userName === 'admin'
|
|
|
|
|
? 'https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=1813762643,1914315241&fm=26&gp=0.jpg'
|
|
|
|
|
: 'https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=317673774,2961727727&fm=26&gp=0.jpg',
|
|
|
|
|
time: new Date().getTime(),
|
|
|
|
|
authPageList: defaultAuthPageList,
|
|
|
|
|
authBtnList: defaultAuthBtnList,
|
|
|
|
|
};
|
|
|
|
|
// 存储 token 到浏览器缓存
|
|
|
|
|
setSession('token', Math.random().toString(36).substr(0));
|
|
|
|
|
// 存储用户信息到浏览器缓存
|
|
|
|
|
setSession('userInfo', userInfos);
|
|
|
|
|
// 1、请注意执行顺序(存储用户信息到vuex)
|
|
|
|
|
store.dispatch('userInfos/setUserInfos', userInfos);
|
|
|
|
|
if (!store.state.themeConfig.themeConfig.isRequestRoutes) {
|
2021-04-23 15:30:32 +08:00
|
|
|
|
// 前端控制路由,2、请注意执行顺序
|
|
|
|
|
await initAllFun();
|
|
|
|
|
signInSuccess();
|
|
|
|
|
} else {
|
|
|
|
|
// 模拟后端控制路由,isRequestRoutes 为 true,则开启后端控制路由
|
|
|
|
|
// 添加完动态路由,再进行 router 跳转,否则可能报错 No match found for location with path "/"
|
|
|
|
|
await initBackEndControlRoutesFun();
|
|
|
|
|
// 执行完 initBackEndControlRoutesFun,再执行 signInSuccess
|
2021-03-15 12:44:58 +08:00
|
|
|
|
signInSuccess();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
// 登录成功后的跳转
|
|
|
|
|
const signInSuccess = () => {
|
|
|
|
|
// 初始化登录成功时间问候语
|
|
|
|
|
let currentTimeInfo = currentTime.value;
|
|
|
|
|
// 登录成功,跳到转首页
|
2021-04-23 15:30:32 +08:00
|
|
|
|
// 添加完动态路由,再进行 router 跳转,否则可能报错 No match found for location with path "/"
|
2021-03-15 12:44:58 +08:00
|
|
|
|
router.push('/');
|
|
|
|
|
// 登录成功提示
|
|
|
|
|
setTimeout(() => {
|
2021-04-23 15:30:32 +08:00
|
|
|
|
// 关闭 loading
|
2021-03-25 18:07:15 +08:00
|
|
|
|
state.loading.signIn = true;
|
2021-04-01 11:13:38 +08:00
|
|
|
|
const signInText = t('message.signInText');
|
|
|
|
|
ElMessage.success(`${currentTimeInfo},${signInText}`);
|
2021-03-15 12:44:58 +08:00
|
|
|
|
}, 300);
|
|
|
|
|
};
|
|
|
|
|
return {
|
|
|
|
|
currentTime,
|
|
|
|
|
onSignIn,
|
|
|
|
|
...toRefs(state),
|
|
|
|
|
};
|
|
|
|
|
},
|
2020-12-27 14:55:27 +08:00
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.login-content-form {
|
2021-03-15 12:44:58 +08:00
|
|
|
|
margin-top: 20px;
|
|
|
|
|
.login-content-code {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
.login-content-code-img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
border: 1px solid rgb(220, 223, 230);
|
|
|
|
|
color: #333;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 5px;
|
|
|
|
|
text-indent: 5px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all ease 0.2s;
|
|
|
|
|
border-radius: 4px;
|
2021-04-01 11:13:38 +08:00
|
|
|
|
user-select: none;
|
2021-03-15 12:44:58 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
border-color: #c0c4cc;
|
|
|
|
|
transition: all ease 0.2s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.login-content-submit {
|
|
|
|
|
width: 100%;
|
|
|
|
|
letter-spacing: 2px;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
2020-12-27 14:55:27 +08:00
|
|
|
|
}
|
2021-03-15 12:44:58 +08:00
|
|
|
|
</style>
|