!24 解决大小写问题
Merge pull request !24 from hbzgyjh/auto-5488917-develop-1629448366895
This commit is contained in:
commit
a9effadb66
|
@ -69,7 +69,7 @@ export const asyncRouterMap = [
|
|||
{
|
||||
path: '/form/base-form',
|
||||
name: 'BaseForm',
|
||||
component: () => import('@/views/form/basicForm/Index'),
|
||||
component: () => import('@/views/form/basicForm/index'),
|
||||
meta: { title: '基础表单', keepAlive: true, permission: [ 'form' ] }
|
||||
},
|
||||
{
|
||||
|
@ -154,7 +154,7 @@ export const asyncRouterMap = [
|
|||
{
|
||||
path: '/profile/basic',
|
||||
name: 'ProfileBasic',
|
||||
component: () => import('@/views/profile/basic/Index'),
|
||||
component: () => import('@/views/profile/basic/index'),
|
||||
meta: { title: '基础详情页', permission: [ 'profile' ] }
|
||||
},
|
||||
{
|
||||
|
@ -226,7 +226,7 @@ export const asyncRouterMap = [
|
|||
{
|
||||
path: '/account/center',
|
||||
name: 'center',
|
||||
component: () => import('@/views/account/center/Index'),
|
||||
component: () => import('@/views/account/center/index'),
|
||||
meta: { title: '个人中心', keepAlive: true, permission: [ 'user' ] }
|
||||
},
|
||||
{
|
||||
|
|
|
@ -17,7 +17,7 @@ const constantRouterComponents = {
|
|||
// 你需要动态引入的页面组件
|
||||
'Workplace': () => import('@/views/dashboard/Workplace'),
|
||||
// form
|
||||
'BasicForm': () => import('@/views/form/basicForm/Index'),
|
||||
'BasicForm': () => import('@/views/form/basicForm/index'),
|
||||
'StepForm': () => import('@/views/form/stepForm/StepForm'),
|
||||
'AdvanceForm': () => import('@/views/form/advancedForm/AdvancedForm'),
|
||||
|
||||
|
@ -29,7 +29,7 @@ const constantRouterComponents = {
|
|||
'SearchArticles': () => import('@/views/list/search/Article'),
|
||||
'SearchProjects': () => import('@/views/list/search/Projects'),
|
||||
'SearchApplications': () => import('@/views/list/search/Applications'),
|
||||
'ProfileBasic': () => import('@/views/profile/basic/Index'),
|
||||
'ProfileBasic': () => import('@/views/profile/basic/index'),
|
||||
'ProfileAdvanced': () => import('@/views/profile/advanced/Advanced'),
|
||||
|
||||
// result
|
||||
|
@ -42,7 +42,7 @@ const constantRouterComponents = {
|
|||
'Exception500': () => import(/* webpackChunkName: "fail" */ '@/views/exception/500'),
|
||||
|
||||
// account
|
||||
'AccountCenter': () => import('@/views/account/center/Index'),
|
||||
'AccountCenter': () => import('@/views/account/center/index'),
|
||||
'AccountSettings': () => import('@/views/account/settings/Index'),
|
||||
'BaseSettings': () => import('@/views/account/settings/BaseSetting'),
|
||||
'SecuritySettings': () => import('@/views/account/settings/Security'),
|
||||
|
|
Loading…
Reference in New Issue