feat: 阿里图标库更新,菜单栏整体优化完成
parent
509f8f0e12
commit
8313ec2ae0
@ -1,26 +0,0 @@
|
||||
// import { $t } from "@/plugins/i18n";
|
||||
const { VITE_HIDE_HOME } = import.meta.env;
|
||||
const Layout = () => import("@/layout/index.vue");
|
||||
|
||||
export default {
|
||||
path: "/",
|
||||
name: "Home",
|
||||
component: Layout,
|
||||
redirect: "/welcome",
|
||||
meta: {
|
||||
icon: "homeFilled",
|
||||
title: "首页",
|
||||
rank: 0
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: "/welcome",
|
||||
name: "Welcome",
|
||||
component: () => import("@/views/welcome/index.vue"),
|
||||
meta: {
|
||||
title: "首页",
|
||||
showLink: VITE_HIDE_HOME === "true" ? false : true
|
||||
}
|
||||
}
|
||||
]
|
||||
} as RouteConfigsTable;
|
@ -1,4 +1,29 @@
|
||||
$--web-font0: #000;
|
||||
$--web-font1: #333;
|
||||
$--web-font2: #666;
|
||||
$--web-font3: #999;
|
||||
$--theme-color: #154ddd;
|
||||
|
||||
.text-web-font0 {
|
||||
color: $--web-font0;
|
||||
}
|
||||
|
||||
.text-web-font1 {
|
||||
color: $--web-font1;
|
||||
}
|
||||
|
||||
.text-web-font2 {
|
||||
color: $--web-font2;
|
||||
}
|
||||
|
||||
.text-web-font3 {
|
||||
color: $--web-font3;
|
||||
}
|
||||
|
||||
.theme-color {
|
||||
color: $--theme-color;
|
||||
}
|
||||
|
||||
.theme-bg-color {
|
||||
background-color: $--theme-color;
|
||||
}
|
||||
|
Loading…
Reference in New Issue