befly-admin 3.4.4 → 3.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env +4 -0
- package/.env.development +2 -0
- package/.env.production +2 -0
- package/bunfig.toml +11 -0
- package/package.json +4 -2
- package/src/layouts/internal/0.vue +1 -1
package/.env
ADDED
package/.env.development
CHANGED
package/.env.production
CHANGED
package/bunfig.toml
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "befly-admin",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
4
4
|
"description": "Befly Admin - 基于 Vue3 + OpenTiny Vue 的后台管理系统",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -14,9 +14,11 @@
|
|
|
14
14
|
"index.html",
|
|
15
15
|
"vite.config.ts",
|
|
16
16
|
"tsconfig.json",
|
|
17
|
+
".env",
|
|
17
18
|
".env.development",
|
|
18
19
|
".env.production",
|
|
19
20
|
".gitignore",
|
|
21
|
+
"bunfig.toml",
|
|
20
22
|
"README.md"
|
|
21
23
|
],
|
|
22
24
|
"scripts": {
|
|
@@ -50,5 +52,5 @@
|
|
|
50
52
|
"node": ">=22.0.0",
|
|
51
53
|
"pnpm": ">=9.0.0"
|
|
52
54
|
},
|
|
53
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "70faf2a86ad8e9e71c5e80fde3f0b2e22c81a18a"
|
|
54
56
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<!-- 顶部导航栏 -->
|
|
4
4
|
<div class="layout-header">
|
|
5
5
|
<div class="logo">
|
|
6
|
-
<h2
|
|
6
|
+
<h2>{{ import.meta.env.VITE_APP_TITLE }}</h2>
|
|
7
7
|
</div>
|
|
8
8
|
<div class="header-right">
|
|
9
9
|
<tiny-dropdown title="管理员" trigger="click" border type="info" @item-click="$Method.handleUserMenu">
|