123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- <template>
- <div class="login-container flex-row">
- <div class="part" v-if="userInfo.avatarUrl">
- <div class="user">
- <img :src="userInfo.avatarUrl" alt="" class="avatar">
- <div class="name">{{ userInfo.nickname }}</div>
- <div class="info">登录成功即可绑定</div>
- </div>
- <Account from="sso" :ssoInfo="userInfo" />
- </div>
- </div>
- </template>
- <script lang="ts">
- import { computed, defineComponent, getCurrentInstance, ref } from 'vue';
- import { useRoute, useRouter } from 'vue-router';
- import { useStore } from '/@/store/index';
- import dayjs from 'dayjs';
- import api from '/@/api/system';
- import { Session, Local } from '/@/utils/storage';
- import { initFrontEndControlRoutes } from '/@/router/frontEnd';
- import { initBackEndControlRoutes } from '/@/router/backEnd';
- import { ElMessage } from 'element-plus';
- import { setToken } from "/@/utils/auth";
- import Account from '/@/views/login/component/account.vue';
- // 定义接口来定义对象的类型
- interface LoginState {
- tabsActiveName: string;
- isScan: boolean;
- }
- export default defineComponent({
- components: {
- Account
- },
- data: function () {
- return {
- dayjs,
- sysinfo: {
- buildVersion: '',
- systemName: '',
- buildTime: '',
- systemCopyright: '',
- systemLogo: '',
- systemLoginPIC: '',
- },
- };
- },
- mounted() {
- this.sysinfo = JSON.parse(localStorage.sysinfo || '{}');
- },
- setup() {
- const route = useRoute()
- const router = useRouter();
- const store = useStore();
- const { proxy } = getCurrentInstance() as any;
- const userInfo = ref<any>({})
- api.sso.callback(route.query).then(async (res: any) => {
-
- if (!res.loginUser) {
- userInfo.value = res.oauthUser
- return
- }
- setToken(res.loginUser.token);
- localStorage.setItem('token', res.loginUser.token);
- const userInfos = res.loginUser;
- userInfos.avatar = proxy.getUpFileUrl(userInfos.avatar);
- // 存储 token 到浏览器缓存
- Local.set('userInfo', userInfos);
- // 存储用户信息到浏览器缓存
- Session.set('userInfo', userInfos);
- // 获取权限配置,上传文件类型等
- const [columnRes, buttonRes, uploadFileRes] = await Promise.all([api.getInfoByKey('sys.column.switch'), api.getInfoByKey('sys.button.switch'), api.getInfoByKey('sys.uploadFile.way')])
- const isSecurityControlEnabled = sessionStorage.isSecurityControlEnabled || null
- localStorage.setItem('btnNoAuth', (isSecurityControlEnabled && Number(buttonRes?.data?.configValue)) ? '' : '1');
- localStorage.setItem('colNoAuth', (isSecurityControlEnabled && Number(columnRes?.data?.configValue)) ? '' : '1');
- localStorage.setItem('uploadFileWay', uploadFileRes?.data?.configValue || '0');
- await store.dispatch('userInfos/setUserInfos', userInfos);
- currentUser();
- })
- // 获取登录用户信息
- const currentUser = async () => {
- api.login.currentUser().then(async (res: any) => {
- localStorage.setItem('userId', res.Info.id);
- // 设置用户菜单
- Session.set('userMenu', res.Data || []);
- store.dispatch('requestOldRoutes/setBackEndControlRoutes', res || []);
- if (!store.state.themeConfig.themeConfig.isRequestRoutes) {
- // 前端控制路由,2、请注意执行顺序
- await initFrontEndControlRoutes();
- signInSuccess();
- } else {
- // 模拟后端控制路由,isRequestRoutes 为 true,则开启后端控制路由
- // 添加完动态路由,再进行 router 跳转,否则可能报错 No match found for location with path "/"
- await initBackEndControlRoutes();
- // 执行完 initBackEndControlRoutes,再执行 signInSuccess
- signInSuccess();
- }
- });
- // // 设置按钮权限
- // Session.set('permissions', res.data.permissions);
- // // 1、请注意执行顺序(存储用户信息到vuex)
- // await store.dispatch('userInfos/setPermissions', res.data.permissions);
- };
- // 登录成功后的跳转
- const signInSuccess = () => {
- // 修改首页重定向的地址,从后台配置中获取首页的地址并在登录之后和刷新页面时进行修改
- const sysinfo = JSON.parse(localStorage.sysinfo || '{}');
- const homePage = router.getRoutes().find((item) => item.path === '/');
- homePage && (homePage.redirect = sysinfo.systemHomePageRoute || '/home');
- if (route.query?.redirect) {
- router.push({
- path: route.query?.redirect as string,
- query: route.query.params ? (Object.keys(route.query?.params as string).length > 0 ? JSON.parse(route.query?.params as string) : '') : '',
- });
- } else {
- router.push('/');
- }
- // 登录成功提示
- ElMessage.success('登录成功');
- };
- return {
- userInfo
- };
- },
- });
- </script>
- <style scoped lang="scss">
- .user {
- text-align: center;
- .avatar {
- width: 80px;
- height: 80px;
- border-radius: 50%;
- }
- .name {
- font-size: 20px;
- font-weight: 500;
- text-align: center;
- font-size: #999;
- }
- .info {
- font-size: 16px;
- text-align: center;
- color: #f40;
- }
- }
- html[data-theme='dark'] {
- .login-container {
- background: #293146;
- }
- .left {
- background-image: url(/@/assets/login-bg-dark.svg);
- }
- .title {
- color: #aaa;
- }
- }
- .flex {
- display: flex;
- align-items: center;
- }
- .text {
- color: #fff;
- }
- .switch {
- position: fixed;
- right: 20px;
- top: 20px;
- }
- .login-container {
- width: 100vw;
- height: 100vh;
- position: relative;
- background: #fff;
- .title {
- font-size: 30px;
- color: #333;
- font-weight: bold;
- letter-spacing: 20px;
- }
- .logo {
- font-size: 30px;
- color: #fff;
- .logoimg {
- height: 50px;
- display: block;
- margin-right: 12px;
- }
- }
- .img {
- width: 50%;
- display: block;
- margin: 15vh 0;
- }
- .part {
- flex: 1;
- display: flex;
- flex-flow: column nowrap;
- justify-content: center;
- align-items: center;
- }
- .left {
- height: 100vh;
- background-image: url(/@/assets/login-bg.svg);
- background-repeat: no-repeat;
- background-size: auto 100%;
- background-position: right center;
- align-items: flex-start;
- padding-left: 8%;
- }
- .login-icon-group {
- width: 100%;
- height: 100%;
- position: relative;
- .login-icon-group-title {
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 12px 0;
- img {
- width: auto;
- height: 40px;
- }
- &-text {
- padding-left: 20px;
- color: var(--el-color-primary);
- }
- }
- &-icon {
- width: 60%;
- height: 70%;
- position: absolute;
- left: 0;
- bottom: 0;
- }
- }
- .login-content-out {
- width: 100%;
- height: 100%;
- padding-top: calc(50vh - 227px);
- }
- .login-content {
- width: 500px;
- padding: 20px;
- margin-left: calc(50% - 500px);
- background-color: rgba(255, 255, 255, 0.8);
- border: 5px solid var(--el-color-primary-light-8);
- border-radius: 5px;
- overflow: hidden;
- z-index: 1;
- position: relative;
- .login-content-main {
- margin: 0 auto;
- width: 80%;
- .login-content-title {
- color: var(--el-text-color-primary);
- font-weight: 500;
- font-size: 22px;
- text-align: center;
- letter-spacing: 4px;
- margin: 15px 0 30px;
- white-space: nowrap;
- z-index: 5;
- position: relative;
- transition: all 0.3s ease;
- }
- }
- .login-content-main-sacn {
- position: absolute;
- top: 0;
- right: 0;
- width: 50px;
- height: 50px;
- overflow: hidden;
- cursor: pointer;
- transition: all ease 0.3s;
- color: var(--el-text-color-primary);
- &-delta {
- position: absolute;
- width: 35px;
- height: 70px;
- z-index: 2;
- top: 2px;
- right: 21px;
- background: var(--el-color-white);
- transform: rotate(-45deg);
- }
- &:hover {
- opacity: 1;
- transition: all ease 0.3s;
- color: var(--el-color-primary) !important;
- }
- i {
- width: 47px;
- height: 50px;
- display: inline-block;
- font-size: 48px;
- position: absolute;
- right: 2px;
- top: -1px;
- }
- }
- }
- .login-footer {
- position: absolute;
- bottom: 5px;
- width: 100%;
- &-content {
- width: 100%;
- display: flex;
- &-warp {
- margin: auto;
- color: #e0e3e9;
- text-align: center;
- animation: error-num 1s ease-in-out;
- }
- }
- }
- }
- </style>
|