|
@@ -5,6 +5,7 @@ import { NButton } from 'naive-ui';
|
|
|
import { SvgIcon } from '@/components';
|
|
|
import { useUserStore } from '@/stores/modules/userStore';
|
|
|
import { userApi } from '@/api/user';
|
|
|
+import { TheArchival } from "@/components"
|
|
|
|
|
|
const router = useRouter();
|
|
|
const userStore = useUserStore();
|
|
@@ -64,7 +65,7 @@ const handleSubmit = async () => {
|
|
|
为水务行业主体提供创新应用和全面支持
|
|
|
</p>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div class="login-form w-[442px] h-[454px] bg-white rounded-[16px]">
|
|
|
<p class="title pl-[2px] mb-[30px] text-[28px] leading-[40px] font-bold">系统登录</p>
|
|
|
<div class="form-inner w-full">
|
|
@@ -84,6 +85,7 @@ const handleSubmit = async () => {
|
|
|
</div>
|
|
|
</div>
|
|
|
<NButton block color="#2454FF" size="large" :loading="loading" @click="handleSubmit">登 录</NButton>
|
|
|
+ <TheArchival class="info"></TheArchival>
|
|
|
</div>
|
|
|
</main>
|
|
|
</div>
|
|
@@ -126,8 +128,18 @@ const handleSubmit = async () => {
|
|
|
}
|
|
|
|
|
|
.login-form {
|
|
|
+ position: relative;
|
|
|
@include flex(y, start, between);
|
|
|
padding: 63px 61px 66px 61px;
|
|
|
+
|
|
|
+ .info {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: -60px;
|
|
|
+ text-align: center;
|
|
|
+ white-space: nowrap;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ }
|
|
|
|
|
|
.title {
|
|
|
background: url("@/assets/images/login/bg-title.png") left bottom no-repeat;
|