177 lines
4.0 KiB
Vue
177 lines
4.0 KiB
Vue
<template>
|
|
<div class="login-container">
|
|
<div class="login-logo">
|
|
<span>GPU算力平台</span>
|
|
</div>
|
|
<div class="login-content">
|
|
<div class="login-content-main">
|
|
<h4 class="login-content-title">GPU算力管理平台</h4>
|
|
<div>
|
|
<a-tabs v-model:activeKey="state.tabsActiveName" size="large">
|
|
<a-tab-pane key="account" tab="账号密码登录">
|
|
<Account />
|
|
</a-tab-pane>
|
|
<a-tab-pane key="code" tab="验证码登录">
|
|
<Code />
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
<div style="width: 100%;display: flex;justify-content: space-between;font-size: 14px;">
|
|
<span style="color:#1677ff;cursor: pointer;">注册</span>
|
|
<span style="color:#666;cursor: pointer;">忘记密码</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="login-copyright">
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { reactive, computed } from "vue";
|
|
import Account from "@/views/login/component/account.vue";
|
|
import Code from "@/views/login/component/code.vue";
|
|
// import Mobile from "@/views/login/component/mobile.vue";
|
|
// import Scan from "@/views/login/component/scan.vue";
|
|
// import { useThemeConfigStateStore } from "@/stores/themeConfig";
|
|
// const theme = useThemeConfigStateStore();
|
|
const state = reactive({
|
|
tabsActiveName: "account",
|
|
isTabPaneShow: true,
|
|
isScan: false,
|
|
});
|
|
// 获取布局配置信息
|
|
// const getThemeConfig = computed(() => {
|
|
// return theme.themeConfig;
|
|
// });
|
|
// 切换密码、手机登录
|
|
const onTabsClick = () => {
|
|
state.isTabPaneShow = !state.isTabPaneShow;
|
|
};
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.login-container {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: url("@/assets/bg-login.png") no-repeat;
|
|
background-size: 100% 100%;
|
|
|
|
.login-logo {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 50%;
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 20px;
|
|
color: var(--color-primary);
|
|
letter-spacing: 2px;
|
|
width: 90%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.login-content {
|
|
width: 500px;
|
|
padding: 20px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 80%;
|
|
transform: translate(-50%, -50%) translate3d(0, 0, 0);
|
|
background-color: rgba(255, 255, 255, 0.99);
|
|
border: 5px solid #ddebff;
|
|
border-radius: 4px;
|
|
transition: height 0.2s linear;
|
|
height: 520px;
|
|
overflow: hidden;
|
|
transition: all 0.3s ease;
|
|
z-index: 1;
|
|
|
|
.login-content-main {
|
|
margin: 0 auto;
|
|
width: 80%;
|
|
|
|
.login-content-title {
|
|
color: #333;
|
|
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-icon {
|
|
font-size: 25px;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
.login-content-main-sacn {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 50px;
|
|
height: 50px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: all ease 0.3s;
|
|
|
|
&-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(--color-primary);
|
|
}
|
|
|
|
i {
|
|
width: 47px;
|
|
height: 50px;
|
|
display: inline-block;
|
|
font-size: 48px;
|
|
position: absolute;
|
|
right: 2px;
|
|
top: -1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.login-content-mobile {
|
|
height: 460px;
|
|
}
|
|
|
|
.login-copyright {
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: 30px;
|
|
text-align: center;
|
|
color: var(--color-whites);
|
|
font-size: 12px;
|
|
opacity: 0.8;
|
|
|
|
.login-copyright-company {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.login-copyright-msg {
|
|
@extend .login-copyright-company;
|
|
}
|
|
}
|
|
}
|
|
</style>
|