Login.vue
3.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<template>
<div class="login-page">
<div class="login-header" :style="{ backgroundColor: isDark ? '#1d3794' : '#22283a' }">
<AppLogo
:alwaysShowTitle="true"
style="z-index: 99; position: absolute; width: 40px; height: 100px; left: 10%; top: -20px"
/>
<AppDarkModeToggle
class="absolute top-3 right-10 enter-x"
v-if="!sessionTimeout"
@click="toggleDark"
/>
<AppLocalePicker
class="absolute text-white top-4 right-4 enter-x xl:text-gray-600"
:showText="false"
v-if="!sessionTimeout && showLocale"
/>
</div>
<div class="login-container" :class="{ light1: isDark, dark: !isDark }">
<div class="flex w-full h-full py-5 xl:h-auto xl:py-0 xl:my-0 xl:w-6/12">
<div class="login-description absolute right-65 top-30">
<h1>物联网平台</h1>
<h2>输入您的个人详细信息开始使用!</h2>
</div>
<div
:class="`${prefixCls}-form`"
class="relative w-full px-5 py-8 mx-auto my-auto rounded-md shadow-md xl:ml-16 xl:bg-transparent sm:px-8 xl:p-4 xl:shadow-none sm:w-3/4 lg:w-2/4 xl:w-auto enter-x"
:style="{ backgroundColor: isDark ? '#fff' : '#1a2030' }"
>
<LoginForm />
<ForgetPasswordForm />
<RegisterForm />
<MobileForm />
<QrCodeForm />
</div>
</div>
<div
style="
width: 100%;
display: flex;
justify-content: center;
position: absolute;
bottom: 1.25rem;
color: #fff;
"
>{{ getCopyRight }}</div
>
</div>
</div>
</template>
<script lang="ts" setup>
import { computed, ref } from 'vue';
import { AppLogo } from '/@/components/Application';
import { AppLocalePicker, AppDarkModeToggle } from '/@/components/Application';
import LoginForm from './LoginForm.vue';
import ForgetPasswordForm from './ForgetPasswordForm.vue';
import RegisterForm from './RegisterForm.vue';
import MobileForm from './MobileForm.vue';
import QrCodeForm from './QrCodeForm.vue';
import { useDesign } from '/@/hooks/web/useDesign';
import { useLocaleStore } from '/@/store/modules/locale';
import { useUserStore } from '/@/store/modules/user';
defineProps({
sessionTimeout: {
type: Boolean,
},
});
const { prefixCls } = useDesign('login');
const localeStore = useLocaleStore();
const showLocale = localeStore.getShowPicker;
const isDark = ref(true);
const toggleDark = () => {
isDark.value = !isDark.value;
};
const userStore = useUserStore();
const getCopyRight = computed(() => {
return (
(userStore.platInfo?.copyright ?? 'Copyright@ 云腾五洲 蜀ICP') +
(userStore.platInfo?.presentedOurselves ?? '')
);
});
</script>
<style lang="less">
@prefix-cls: ~'@{namespace}-login';
@logo-prefix-cls: ~'@{namespace}-app-logo';
@countdown-prefix-cls: ~'@{namespace}-countdown-input';
@dark-bg: #293146;
.light1 {
background-image: url('/src/assets/images/bg.png');
}
.dark {
background-image: url('/src/assets/images/bg-dark.png');
}
.login-page {
width: 100%;
height: 100%;
position: relative;
.login-header {
height: 60px;
width: 100%;
background-color: #1d3794;
}
.login-container {
position: relative;
left: -6px;
right: 20px;
width: 101vw;
height: calc(100% - 60px);
background-size: 100% 100%;
background-repeat: no-repeat;
.login-description {
text-align: center;
h1 {
color: #5aeeed;
font-size: 26px;
}
h2 {
color: #5aeeed;
font-size: 20px;
}
}
.vben-login-form {
position: absolute;
width: 25.625rem;
right: 12.5rem;
top: 50%;
margin-top: -11.25rem;
}
}
}
</style>