mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
style(projects): 修改了登录页样式
This commit is contained in:
parent
1bc7059e11
commit
c6aa06637a
@ -5,6 +5,79 @@ const Random = Mock.Random;
|
|||||||
|
|
||||||
const token = Random.string('upper', 32, 32);
|
const token = Random.string('upper', 32, 32);
|
||||||
|
|
||||||
|
const routeData = {
|
||||||
|
admin: [
|
||||||
|
{
|
||||||
|
name: 'dashboard',
|
||||||
|
path: '/dashboard',
|
||||||
|
meta: {
|
||||||
|
title: '分析页',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:analysis',
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'dashboard_workbench',
|
||||||
|
path: '/dashboard/workbench',
|
||||||
|
meta: {
|
||||||
|
title: '工作台',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:alarm',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'dashboard_monitor',
|
||||||
|
path: '/dashboard/monitor',
|
||||||
|
meta: {
|
||||||
|
title: '监控页',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:anchor',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'test',
|
||||||
|
path: '/test',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:ambulance',
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'test1',
|
||||||
|
path: '/test/test1',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题1',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:alarm',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'test2',
|
||||||
|
path: '/test/test2',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题2',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:pic',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'test3',
|
||||||
|
path: '/test/test3',
|
||||||
|
meta: {
|
||||||
|
title: '测试专题3',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:tool',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
user: [],
|
||||||
|
};
|
||||||
|
|
||||||
const userInfo = {
|
const userInfo = {
|
||||||
userId: '1',
|
userId: '1',
|
||||||
userName: 'admin',
|
userName: 'admin',
|
||||||
|
@ -64,7 +64,7 @@ export const useAuthStore = defineStore('auth-store', {
|
|||||||
// 触发用户提示
|
// 触发用户提示
|
||||||
window.$notification?.success({
|
window.$notification?.success({
|
||||||
title: '登录成功!',
|
title: '登录成功!',
|
||||||
content: `欢迎回来,${this.userInfo.realName}!`,
|
content: `欢迎回来😊,${this.userInfo.realName}!`,
|
||||||
duration: 3000,
|
duration: 3000,
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div flex-center wh-full bg-hex-F3F4F6>
|
<div flex-center wh-full bg-hex-F3F4F6>
|
||||||
<n-carousel autoplay trigger="hover" dot-type="line" effect="fade" class="w-3/4">
|
<n-carousel autoplay trigger="hover" dot-type="line" effect="fade" class="w-3/4">
|
||||||
<img v-for="(item, index) in swiperList" :key="index" class="h-screen object-cover" :src="item" />
|
<img v-for="(item, index) in swiperList" :key="index" class="wh-full object-cover" :src="item" />
|
||||||
</n-carousel>
|
</n-carousel>
|
||||||
<div flex-1 flex-center>
|
<div flex-1 flex-center>
|
||||||
<div w-full h-xl px-6xl>
|
<div w-full h-xl px-6xl>
|
||||||
<n-h1 c-blue>
|
<n-h1 c-blue>
|
||||||
<!-- <e-icon icon="icon-park-outline:plastic-surgery" :size="28" /> -->
|
|
||||||
<i-icon-park-outline-plastic-surgery />
|
<i-icon-park-outline-plastic-surgery />
|
||||||
Ench Admin
|
Ench Admin
|
||||||
</n-h1>
|
</n-h1>
|
||||||
@ -15,7 +14,7 @@
|
|||||||
<n-form-item path="account">
|
<n-form-item path="account">
|
||||||
<n-input v-model:value="formValue.account" placeholder="输入账号" round>
|
<n-input v-model:value="formValue.account" placeholder="输入账号" round>
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<e-icon icon="icon-park-outline:woman" />
|
<i-icon-park-outline-woman />
|
||||||
</template>
|
</template>
|
||||||
</n-input>
|
</n-input>
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
@ -28,13 +27,13 @@
|
|||||||
round
|
round
|
||||||
>
|
>
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<e-icon icon="icon-park-outline:lock" />
|
<i-icon-park-outline-lock />
|
||||||
</template>
|
</template>
|
||||||
<template #password-invisible-icon>
|
<template #password-invisible-icon>
|
||||||
<e-icon icon="icon-park-outline:preview-close-one" />
|
<i-icon-park-outline-preview-close-one />
|
||||||
</template>
|
</template>
|
||||||
<template #password-visible-icon>
|
<template #password-visible-icon>
|
||||||
<e-icon icon="icon-park-outline:preview-open" />
|
<i-icon-park-outline-preview-open />
|
||||||
</template>
|
</template>
|
||||||
</n-input>
|
</n-input>
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
@ -42,10 +41,10 @@
|
|||||||
<n-space align="center">
|
<n-space align="center">
|
||||||
<n-input v-model:value="formValue.code" placeholder="输入验证码" round>
|
<n-input v-model:value="formValue.code" placeholder="输入验证码" round>
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<e-icon icon="icon-park-outline:message" />
|
<i-icon-park-outline-message />
|
||||||
</template>
|
</template>
|
||||||
</n-input>
|
</n-input>
|
||||||
<span>这边可以放点什么</span>
|
<span>验证码什么的</span>
|
||||||
</n-space>
|
</n-space>
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
<n-space vertical :size="24">
|
<n-space vertical :size="24">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user