This commit is contained in:
aaron 2025-03-09 09:55:37 +08:00
parent 9beb6e98bc
commit 84953056f7
5 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# 蜂快·运营商平台 # 蜂快 · 运营商平台
基于Vue 3和Ant Design Vue的蜂快·运营商平台。 基于Vue 3和Ant Design Vue的蜂快 · 运营商平台。
## 功能特点 ## 功能特点

View File

@ -1,7 +1,7 @@
{ {
"name": "partner-admin", "name": "partner-admin",
"version": "1.0.0", "version": "1.0.0",
"description": "基于Ant Design Vue的蜂快·运营商平台", "description": "基于Ant Design Vue的蜂快 · 运营商平台",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"dev": "webpack serve --mode development", "dev": "webpack serve --mode development",

View File

@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>蜂快·运营商平台</title> <title>蜂快 · 运营商平台</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ant-design/icons-svg@4.2.1/lib/asn/index.min.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ant-design/icons-svg@4.2.1/lib/asn/index.min.css">
</head> </head>
<body> <body>

View File

@ -3,7 +3,7 @@
<!-- 侧边栏 --> <!-- 侧边栏 -->
<a-layout-sider v-model:collapsed="collapsed" collapsible :theme="'dark'" style="background: #1a1a1a; position: fixed; height: 100vh; z-index: 10; left: 0; top: 0;"> <a-layout-sider v-model:collapsed="collapsed" collapsible :theme="'dark'" style="background: #1a1a1a; position: fixed; height: 100vh; z-index: 10; left: 0; top: 0;">
<div class="logo"> <div class="logo">
<h1 v-if="!collapsed">蜂快·运营商平台</h1> <h1 v-if="!collapsed">蜂快 · 运营商平台</h1>
<h1 v-else>蜂快</h1> <h1 v-else>蜂快</h1>
</div> </div>
<a-menu <a-menu
@ -28,7 +28,7 @@
<a-breadcrumb-item> <a-breadcrumb-item>
<home-outlined /> <home-outlined />
</a-breadcrumb-item> </a-breadcrumb-item>
<a-breadcrumb-item>蜂快·运营商平台</a-breadcrumb-item> <a-breadcrumb-item>蜂快 · 运营商平台</a-breadcrumb-item>
<a-breadcrumb-item>{{ currentPageTitle }}</a-breadcrumb-item> <a-breadcrumb-item>{{ currentPageTitle }}</a-breadcrumb-item>
</a-breadcrumb> </a-breadcrumb>
</div> </div>
@ -59,7 +59,7 @@
<!-- 底部 --> <!-- 底部 -->
<a-layout-footer class="layout-footer"> <a-layout-footer class="layout-footer">
蜂快·运营商平台 ©2025 蜂快 · 运营商平台 ©2025
</a-layout-footer> </a-layout-footer>
</a-layout> </a-layout>
</a-layout> </a-layout>

View File

@ -35,7 +35,7 @@ const router = createRouter({
// 路由守卫 // 路由守卫
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
// 这里可以添加身份验证逻辑 // 这里可以添加身份验证逻辑
document.title = to.meta.title ? `${to.meta.title} - 蜂快·运营商平台` : '蜂快·运营商平台'; document.title = to.meta.title ? `${to.meta.title} - 蜂快 · 运营商平台` : '蜂快 · 运营商平台';
next(); next();
}); });