mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
fix: 一些bug修复
This commit is contained in:
parent
09315473a3
commit
85f0d43d7e
1
.gitignore
vendored
1
.gitignore
vendored
@ -15,6 +15,7 @@ dist/
|
|||||||
*.local
|
*.local
|
||||||
visualizer.*
|
visualizer.*
|
||||||
.eslintcache
|
.eslintcache
|
||||||
|
.history
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
.idea
|
.idea
|
||||||
|
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
|||||||
# CHANGE LOG
|
# CHANGE LOG
|
||||||
|
|
||||||
|
## 4.8.6
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
- 修复动态路由的情况下,始终会被跳转到 `404` 页面的问题
|
||||||
|
- 修复 `RIcon` 组件 `color` 配置项无效的问题
|
||||||
|
- 修复 `svg-icon` 页面可能会在更新 `icon` 后出现报错的问题
|
||||||
|
- 修复 `updateDocumentTitle` 方法可能会更新标题出错的问题
|
||||||
|
- 修复菜单的折叠问题
|
||||||
|
|
||||||
## 4.8.5
|
## 4.8.5
|
||||||
|
|
||||||
## Feats
|
## Feats
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ray-template",
|
"name": "ray-template",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "4.8.5",
|
"version": "4.8.6",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.0.0 || >=20.0.0",
|
"node": "^18.0.0 || >=20.0.0",
|
||||||
@ -25,7 +25,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"/src/**/*.{ts,tsx,vue}": [
|
"./src/**/*.{ts,tsx,vue}": [
|
||||||
"vue-tsc --noEmit"
|
"vue-tsc --noEmit"
|
||||||
],
|
],
|
||||||
"*.{ts,tsx,json}": [
|
"*.{ts,tsx,json}": [
|
||||||
|
@ -8,12 +8,12 @@
|
|||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
fill: currentColor;
|
color: var(--ray-icon-color);
|
||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
opacity: var(--ray-icon-depth);
|
opacity: var(--ray-icon-depth);
|
||||||
cursor: var(--ray-icon-cursor);
|
cursor: var(--ray-icon-cursor);
|
||||||
|
|
||||||
& svg[RayIconAttribute="ray-icon"] {
|
& svg[RayIconAttribute='ray-icon'] {
|
||||||
width: var(--ray-icon-width);
|
width: var(--ray-icon-width);
|
||||||
height: var(--ray-icon-height);
|
height: var(--ray-icon-height);
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
|
@ -29,6 +29,7 @@ export default defineComponent({
|
|||||||
: completeSize(props.size),
|
: completeSize(props.size),
|
||||||
'--ray-icon-depth': props.depth,
|
'--ray-icon-depth': props.depth,
|
||||||
'--ray-icon-cursor': props.cursor,
|
'--ray-icon-cursor': props.cursor,
|
||||||
|
'--ray-icon-color': props.color,
|
||||||
}
|
}
|
||||||
|
|
||||||
return cssVar
|
return cssVar
|
||||||
|
@ -28,7 +28,8 @@ export default defineComponent({
|
|||||||
setup() {
|
setup() {
|
||||||
const menuRef = ref<MenuInst | null>(null)
|
const menuRef = ref<MenuInst | null>(null)
|
||||||
|
|
||||||
const { changeMenuModelValue, collapsedMenu } = useMenuActions()
|
const { changeMenuModelValue, collapsedMenu, updateMenuState } =
|
||||||
|
useMenuActions()
|
||||||
const { getMenuOptions, getCollapsed, getMenuKey } = useMenuGetters()
|
const { getMenuOptions, getCollapsed, getMenuKey } = useMenuGetters()
|
||||||
|
|
||||||
const modelMenuKey = computed({
|
const modelMenuKey = computed({
|
||||||
@ -84,6 +85,13 @@ export default defineComponent({
|
|||||||
onUpdateCollapsed={collapsedMenu.bind(this)}
|
onUpdateCollapsed={collapsedMenu.bind(this)}
|
||||||
nativeScrollbar={false}
|
nativeScrollbar={false}
|
||||||
ref={LAYOUT_SIDER_REF}
|
ref={LAYOUT_SIDER_REF}
|
||||||
|
collapsed={getCollapsed.value}
|
||||||
|
onExpand={() => {
|
||||||
|
updateMenuState('collapsed', false)
|
||||||
|
}}
|
||||||
|
onCollapse={() => {
|
||||||
|
updateMenuState('collapsed', true)
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<SiderBarLogo collapsed={getCollapsed.value} />
|
<SiderBarLogo collapsed={getCollapsed.value} />
|
||||||
<NMenu
|
<NMenu
|
||||||
|
@ -21,8 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { combineRawRouteModules } from '@/router/utils'
|
import { combineRawRouteModules } from '@/router/utils'
|
||||||
import { orderRoutes } from '@/router/utils'
|
import { orderRoutes, expandRoutes } from '@/router/utils'
|
||||||
import { expandRoutes } from '@/router/utils'
|
|
||||||
|
|
||||||
/** 获取所有被合并与排序的路由 */
|
/** 获取所有被合并与排序的路由 */
|
||||||
export const getAppRawRoutes = () => orderRoutes(combineRawRouteModules())
|
export const getAppRawRoutes = () => orderRoutes(combineRawRouteModules())
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
import { t } from '@/hooks/web/useI18n'
|
|
||||||
import { LAYOUT } from '@/router/constant'
|
|
||||||
|
|
||||||
import type { AppRouteRecordRaw } from '@/router/types'
|
|
||||||
|
|
||||||
const error404: AppRouteRecordRaw = {
|
|
||||||
path: '/:catchAll(.*)',
|
|
||||||
component: () => import('@/views/error/views/Error404'),
|
|
||||||
meta: {
|
|
||||||
i18nKey: t('menu.Error'),
|
|
||||||
icon: 'error',
|
|
||||||
hidden: true,
|
|
||||||
sameLevel: true,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
export default error404
|
|
@ -1,5 +1,6 @@
|
|||||||
import Layout from '@/layout'
|
import Layout from '@/layout'
|
||||||
import { appExpandRoutes } from './app-route-modules'
|
import { appExpandRoutes } from './app-route-modules'
|
||||||
|
import { t } from '@/hooks/web/useI18n'
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
/**
|
/**
|
||||||
@ -20,6 +21,23 @@ export default [
|
|||||||
path: '/',
|
path: '/',
|
||||||
name: 'RLayout',
|
name: 'RLayout',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
children: appExpandRoutes(),
|
children: [
|
||||||
|
...appExpandRoutes(),
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 404 页面一定要放在最后面,避免奇奇怪怪的问题。
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
path: '/:catchAll(.*)',
|
||||||
|
component: () => import('@/views/error/views/Error404'),
|
||||||
|
meta: {
|
||||||
|
i18nKey: t('menu.Error'),
|
||||||
|
icon: 'error',
|
||||||
|
hidden: true,
|
||||||
|
sameLevel: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
@ -83,6 +83,7 @@ export const useMenuActions = () => {
|
|||||||
spliceMenTagOptions,
|
spliceMenTagOptions,
|
||||||
setMenuTagOptions,
|
setMenuTagOptions,
|
||||||
resolveOption,
|
resolveOption,
|
||||||
|
updateMenuState,
|
||||||
} = piniaMenuStore()
|
} = piniaMenuStore()
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@ -91,5 +92,6 @@ export const useMenuActions = () => {
|
|||||||
spliceMenTagOptions,
|
spliceMenTagOptions,
|
||||||
setMenuTagOptions,
|
setMenuTagOptions,
|
||||||
resolveOption,
|
resolveOption,
|
||||||
|
updateMenuState,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,7 @@ import { pick } from 'lodash-es'
|
|||||||
import type { AppMenuOption, MenuTagOptions } from '@/types'
|
import type { AppMenuOption, MenuTagOptions } from '@/types'
|
||||||
import type { MenuState } from '@/store/modules/menu/types'
|
import type { MenuState } from '@/store/modules/menu/types'
|
||||||
import type { LocationQuery } from 'vue-router'
|
import type { LocationQuery } from 'vue-router'
|
||||||
|
import type { UpdateMenuState } from './types'
|
||||||
|
|
||||||
let cachePreNormal: AppMenuOption | undefined = void 0
|
let cachePreNormal: AppMenuOption | undefined = void 0
|
||||||
|
|
||||||
@ -106,6 +107,20 @@ export const piniaMenuStore = defineStore(
|
|||||||
})
|
})
|
||||||
const isSetupAppMenuLock = ref(true)
|
const isSetupAppMenuLock = ref(true)
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param key menu state key
|
||||||
|
* @param value updated value
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 更新 menu state 指定 key 的值。
|
||||||
|
*/
|
||||||
|
const updateMenuState: UpdateMenuState = (key, value) => {
|
||||||
|
if (Object.hasOwn(menuState, key as string)) {
|
||||||
|
menuState[key] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param option 菜单项(类似于菜单项的数据结构也可以)
|
* @param option 菜单项(类似于菜单项的数据结构也可以)
|
||||||
@ -426,6 +441,7 @@ export const piniaMenuStore = defineStore(
|
|||||||
spliceMenTagOptions,
|
spliceMenTagOptions,
|
||||||
setMenuTagOptions,
|
setMenuTagOptions,
|
||||||
resolveOption,
|
resolveOption,
|
||||||
|
updateMenuState,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -8,3 +8,10 @@ export interface MenuState {
|
|||||||
breadcrumbOptions: AppMenuOption[]
|
breadcrumbOptions: AppMenuOption[]
|
||||||
currentMenuOption: AppMenuOption | null
|
currentMenuOption: AppMenuOption | null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type PickUpdateKeys = 'collapsed' | 'currentMenuOption'
|
||||||
|
|
||||||
|
export type UpdateMenuState = <T extends keyof Pick<MenuState, PickUpdateKeys>>(
|
||||||
|
key: T,
|
||||||
|
value: MenuState[T],
|
||||||
|
) => void
|
||||||
|
@ -119,6 +119,11 @@ export const parseAndFindMatchingNodes = (
|
|||||||
*/
|
*/
|
||||||
export const updateDocumentTitle = (option: AppMenuOption) => {
|
export const updateDocumentTitle = (option: AppMenuOption) => {
|
||||||
const { breadcrumbLabel } = option
|
const { breadcrumbLabel } = option
|
||||||
|
|
||||||
|
if (!breadcrumbLabel) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const {
|
const {
|
||||||
layout: { sideBarLogo },
|
layout: { sideBarLogo },
|
||||||
} = __APP_CFG__
|
} = __APP_CFG__
|
||||||
|
@ -21,7 +21,7 @@ const PreviewSVGIcons = defineComponent({
|
|||||||
const iconsModules = import.meta.glob('@/icons/**/**.svg')
|
const iconsModules = import.meta.glob('@/icons/**/**.svg')
|
||||||
|
|
||||||
Object.keys(iconsModules).forEach((curr) => {
|
Object.keys(iconsModules).forEach((curr) => {
|
||||||
const iconName = curr.match(/\/(\w+)\.svg/)![1]
|
const iconName = curr.match(/\/(\w+)\.svg/)?.[1]
|
||||||
|
|
||||||
if (iconName) {
|
if (iconName) {
|
||||||
icons.value.push(iconName)
|
icons.value.push(iconName)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user