bug fixed: 修复了一些小问题,修改一些小细节

This commit is contained in:
ray_wuhao 2023-07-07 15:28:50 +08:00
parent 232f1efeb9
commit 17b0c27d96
8 changed files with 14 additions and 17 deletions

View File

@ -11,6 +11,7 @@
- 修复 axios 模块的一些类型错误
- 剔除了一些无用方法,重写了一些方法
- 修复强制跳转父级菜单地址导致错误页问题
## 4.0.2

View File

@ -2,7 +2,7 @@
## 前言
> `Ray Template` 默认使用 `yarn` 作为包管理器,并且默认启用严格模式的 `eslint`。在导入模块的时候除 `.ts` `.tsx` `.d.ts` 文件等不需要手动补全后缀名,其余的模块导入应该手动补全所有后缀名。
> `Ray Template` 默认使用 `pnpm` 作为包管理器,并且默认启用严格模式的 `eslint`。在导入模块的时候除 `.ts` `.tsx` `.d.ts` 文件等不需要手动补全后缀名,其余的模块导入应该手动补全所有后缀名。
### 使用

View File

@ -7,10 +7,10 @@
- 指令应该为全局的通用性指令
- 如果指令需要与系统的数据进行关联,应该注意数据的管理与指令注册使用时机
## 添加指令说明
## 新增指令说明
- 模板视 modules 中每一个文件包为一个模板的指令(全局),并且每个文件包的名称,也被视为该指令名称
- 添加文件包后,强制要求 index.ts 为指令的输出文件名
- 添加文件包后,`强制要求 index.ts 为指令的输出文件名`
- modules 包中所有指令都会被自动合并到模板中
```ts

View File

@ -17,6 +17,8 @@
*
*/
import { cloneDeep } from 'lodash-es'
import type { AppRouteRecordRaw } from '@/router/type'
const isRootPath = (path: string) => path.startsWith('/')
@ -69,7 +71,5 @@ export const expandRoutes = (arr: AppRouteRecordRaw[]) => {
return []
}
const cloneArr = arr.slice()
return routePromotion(cloneArr)
return routePromotion(cloneDeep(arr))
}

View File

@ -3,15 +3,16 @@ import { LAYOUT } from '@/router/constant/index'
import type { AppRouteRecordRaw } from '@/router/type'
const error: AppRouteRecordRaw = {
path: '/error',
const error404: AppRouteRecordRaw = {
path: '/:catchAll(.*)',
name: 'ErrorPage',
component: () => import('@/error/views/Error404/index'),
meta: {
i18nKey: t('menu.Error'),
icon: 'error',
hidden: true,
sameLevel: true,
},
}
export default error
export default error404

View File

@ -18,10 +18,4 @@ export default () => [
component: Layout,
children: expandRoutes(getAppRawRoutes()),
},
{
path: '/:catchAll(.*)',
name: 'errorPage',
component: Layout,
redirect: '/error',
},
]

View File

@ -220,7 +220,7 @@ export const useMenu = defineStore(
findMenuOption(pathKey, curr.children)
}
if (pathKey === curr.key) {
if (pathKey === curr.key && !curr?.children?.length) {
changeMenuModelValue(pathKey, curr)
break

View File

@ -43,6 +43,7 @@
"vite-env.d.ts",
"components.d.ts",
"auto-imports.d.ts",
"src/**/*"
"src/**/*",
"./src/types/global.d.ts"
]
}