refactor: 界面样式重构优化

This commit is contained in:
Ray.Hao
2026-03-13 00:04:42 +08:00
parent 5348ddad36
commit 306d167a55
52 changed files with 3391 additions and 1459 deletions

View File

@@ -32,6 +32,7 @@ declare global {
const defineComponent: typeof import('vue')['defineComponent']
const defineStore: typeof import('pinia')['defineStore']
const dept: typeof import('../api/dept')['default']
const dict: typeof import('../api/dict')['default']
const effectScope: typeof import('vue')['effectScope']
const file: typeof import('../api/file')['default']
const getAccessToken: typeof import('../utils/auth')['getAccessToken']
@@ -61,6 +62,7 @@ declare global {
const mapStores: typeof import('pinia')['mapStores']
const mapWritableState: typeof import('pinia')['mapWritableState']
const markRaw: typeof import('vue')['markRaw']
const menu: typeof import('../api/menu')['default']
const nextTick: typeof import('vue')['nextTick']
const notice: typeof import('../api/notice')['default']
const onActivated: typeof import('vue')['onActivated']
@@ -235,6 +237,7 @@ declare module 'vue' {
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
readonly defineStore: UnwrapRef<typeof import('pinia')['defineStore']>
readonly dept: UnwrapRef<typeof import('../api/dept')['default']>
readonly dict: UnwrapRef<typeof import('../api/dict')['default']>
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
readonly file: UnwrapRef<typeof import('../api/file')['default']>
readonly getAccessToken: UnwrapRef<typeof import('../utils/auth')['getAccessToken']>
@@ -262,6 +265,7 @@ declare module 'vue' {
readonly mapStores: UnwrapRef<typeof import('pinia')['mapStores']>
readonly mapWritableState: UnwrapRef<typeof import('pinia')['mapWritableState']>
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
readonly menu: UnwrapRef<typeof import('../api/menu')['default']>
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
readonly notice: UnwrapRef<typeof import('../api/notice')['default']>
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>

View File

@@ -7,6 +7,7 @@ interface NavigateToOptions {
url: "/pages/index/index" |
"/pages/login/index" |
"/pages/mine/index" |
"/pages/webview/index" |
"/pages/work/index" |
"/pages/mine/about/index" |
"/pages/mine/account/index" |
@@ -17,15 +18,19 @@ interface NavigateToOptions {
"/pages/mine/settings/index" |
"/pages/work/config/index" |
"/pages/work/dept/index" |
"/pages/work/dict/index" |
"/pages/work/log/index" |
"/pages/work/menu/index" |
"/pages/work/monitor/index" |
"/pages/work/notice/index" |
"/pages/work/role/assign-perm" |
"/pages/work/role/index" |
"/pages/work/user/index" |
"/pages/mine/settings/agreement/index" |
"/pages/mine/settings/network/index" |
"/pages/mine/settings/privacy/index" |
"/pages/mine/settings/theme/index";
"/pages/mine/settings/theme/index" |
"/pages/work/dict/item/index";
}
interface RedirectToOptions extends NavigateToOptions {}