mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
bug fixed: 修复了一些小问题,修改一些小细节
This commit is contained in:
parent
232f1efeb9
commit
17b0c27d96
@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
- 修复 axios 模块的一些类型错误
|
- 修复 axios 模块的一些类型错误
|
||||||
- 剔除了一些无用方法,重写了一些方法
|
- 剔除了一些无用方法,重写了一些方法
|
||||||
|
- 修复强制跳转父级菜单地址导致错误页问题
|
||||||
|
|
||||||
## 4.0.2
|
## 4.0.2
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## 前言
|
## 前言
|
||||||
|
|
||||||
> `Ray Template` 默认使用 `yarn` 作为包管理器,并且默认启用严格模式的 `eslint`。在导入模块的时候除 `.ts` `.tsx` `.d.ts` 文件等不需要手动补全后缀名,其余的模块导入应该手动补全所有后缀名。
|
> `Ray Template` 默认使用 `pnpm` 作为包管理器,并且默认启用严格模式的 `eslint`。在导入模块的时候除 `.ts` `.tsx` `.d.ts` 文件等不需要手动补全后缀名,其余的模块导入应该手动补全所有后缀名。
|
||||||
|
|
||||||
### 使用
|
### 使用
|
||||||
|
|
||||||
|
@ -7,10 +7,10 @@
|
|||||||
- 指令应该为全局的通用性指令
|
- 指令应该为全局的通用性指令
|
||||||
- 如果指令需要与系统的数据进行关联,应该注意数据的管理与指令注册使用时机
|
- 如果指令需要与系统的数据进行关联,应该注意数据的管理与指令注册使用时机
|
||||||
|
|
||||||
## 添加指令说明
|
## 新增指令说明
|
||||||
|
|
||||||
- 模板视 modules 中每一个文件包为一个模板的指令(全局),并且每个文件包的名称,也被视为该指令名称
|
- 模板视 modules 中每一个文件包为一个模板的指令(全局),并且每个文件包的名称,也被视为该指令名称
|
||||||
- 添加文件包后,强制要求 index.ts 为指令的输出文件名
|
- 添加文件包后,`强制要求 index.ts 为指令的输出文件名`
|
||||||
- modules 包中所有指令都会被自动合并到模板中
|
- modules 包中所有指令都会被自动合并到模板中
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
* 把所有路由提升为顶层路由
|
* 把所有路由提升为顶层路由
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { cloneDeep } from 'lodash-es'
|
||||||
|
|
||||||
import type { AppRouteRecordRaw } from '@/router/type'
|
import type { AppRouteRecordRaw } from '@/router/type'
|
||||||
|
|
||||||
const isRootPath = (path: string) => path.startsWith('/')
|
const isRootPath = (path: string) => path.startsWith('/')
|
||||||
@ -69,7 +71,5 @@ export const expandRoutes = (arr: AppRouteRecordRaw[]) => {
|
|||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
const cloneArr = arr.slice()
|
return routePromotion(cloneDeep(arr))
|
||||||
|
|
||||||
return routePromotion(cloneArr)
|
|
||||||
}
|
}
|
||||||
|
@ -3,15 +3,16 @@ import { LAYOUT } from '@/router/constant/index'
|
|||||||
|
|
||||||
import type { AppRouteRecordRaw } from '@/router/type'
|
import type { AppRouteRecordRaw } from '@/router/type'
|
||||||
|
|
||||||
const error: AppRouteRecordRaw = {
|
const error404: AppRouteRecordRaw = {
|
||||||
path: '/error',
|
path: '/:catchAll(.*)',
|
||||||
name: 'ErrorPage',
|
name: 'ErrorPage',
|
||||||
component: () => import('@/error/views/Error404/index'),
|
component: () => import('@/error/views/Error404/index'),
|
||||||
meta: {
|
meta: {
|
||||||
i18nKey: t('menu.Error'),
|
i18nKey: t('menu.Error'),
|
||||||
icon: 'error',
|
icon: 'error',
|
||||||
hidden: true,
|
hidden: true,
|
||||||
|
sameLevel: true,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default error
|
export default error404
|
@ -18,10 +18,4 @@ export default () => [
|
|||||||
component: Layout,
|
component: Layout,
|
||||||
children: expandRoutes(getAppRawRoutes()),
|
children: expandRoutes(getAppRawRoutes()),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: '/:catchAll(.*)',
|
|
||||||
name: 'errorPage',
|
|
||||||
component: Layout,
|
|
||||||
redirect: '/error',
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
|
@ -220,7 +220,7 @@ export const useMenu = defineStore(
|
|||||||
findMenuOption(pathKey, curr.children)
|
findMenuOption(pathKey, curr.children)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pathKey === curr.key) {
|
if (pathKey === curr.key && !curr?.children?.length) {
|
||||||
changeMenuModelValue(pathKey, curr)
|
changeMenuModelValue(pathKey, curr)
|
||||||
|
|
||||||
break
|
break
|
||||||
|
@ -43,6 +43,7 @@
|
|||||||
"vite-env.d.ts",
|
"vite-env.d.ts",
|
||||||
"components.d.ts",
|
"components.d.ts",
|
||||||
"auto-imports.d.ts",
|
"auto-imports.d.ts",
|
||||||
"src/**/*"
|
"src/**/*",
|
||||||
|
"./src/types/global.d.ts"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user