refactor(projects): 修改了logo图片

This commit is contained in:
‘chen.home’ 2022-08-14 08:55:04 +08:00
parent ba443b4a39
commit d82e53ee0e
6 changed files with 14 additions and 19 deletions

View File

@ -1,6 +1,5 @@
<div align="center"> <div align="center">
<img src="./public/logo.svg"/> <h1> <img src="./src/assets/svg/logo.svg" style="width:30px"/> Ench Admin</h1>
<h1>Ench Admin</h1>
</div> </div>
一个基于Vue3、vite3、ts、pinia、NaiveUI,Vue-Router4的后台管理项目 一个基于Vue3、vite3、ts、pinia、NaiveUI,Vue-Router4的后台管理项目
@ -50,8 +49,3 @@ pnpm cz
or or
pnpm commit pnpm commit
``` ```
## 素材来源
[iconfont-阿里巴巴矢量图标库](https://www.iconfont.cn/collections/detail?spm=a313x.7781069.1998910419.d9df05512&cid=39973)

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 955 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 955 B

View File

@ -1,6 +1,6 @@
<template> <template>
<svg aria-hidden="true"> <svg aria-hidden="true" :width="`${props.size}px`">
<use :xlink:href="symbolId" :fill="color" /> <use :xlink:href="symbolId" fill="currentColor" />
</svg> </svg>
</template> </template>
@ -15,9 +15,9 @@ const props = defineProps({
type: String, type: String,
required: true, required: true,
}, },
color: { size: {
type: String, type: Number,
default: '#333', default: 18,
}, },
}); });
const symbolId = computed(() => `#${props.prefix}-${props.name}`); const symbolId = computed(() => `#${props.prefix}-${props.name}`);

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="h-60px text-2xl flex-center overflow-hidden"> <div class="h-60px text-2xl flex-center overflow-hidden">
<SvgIcon name="logo" class="w-9 h-9" /> <SvgIcon name="logo" :size="28" />
<div v-show="!appStore.collapsed" class="mx-5">{{ appStore.title }}</div> <span v-show="!appStore.collapsed" class="mx-4">{{ appStore.title }}</span>
</div> </div>
</template> </template>

View File

@ -46,6 +46,9 @@ const routes: RouteRecordRaw[] = [
path: '/login', path: '/login',
name: 'login', name: 'login',
component: () => import('@/views/login/index.vue'), // 注意这里要带上 文件后缀.vue component: () => import('@/views/login/index.vue'), // 注意这里要带上 文件后缀.vue
meta: {
title: '登录',
},
}, },
{ {
path: '/no-permission', path: '/no-permission',
@ -53,7 +56,6 @@ const routes: RouteRecordRaw[] = [
component: () => import('@/views/inherit-page/not-permission/index.vue'), component: () => import('@/views/inherit-page/not-permission/index.vue'),
meta: { meta: {
title: '无权限', title: '无权限',
singleLayout: 'blank',
}, },
}, },
{ {
@ -62,7 +64,6 @@ const routes: RouteRecordRaw[] = [
component: () => import('@/views/inherit-page/service-error/index.vue'), component: () => import('@/views/inherit-page/service-error/index.vue'),
meta: { meta: {
title: '服务器错误', title: '服务器错误',
singleLayout: 'blank',
}, },
}, },
{ {