@@ -71,58 +71,57 @@ export const asyncRouterMap = [
7171 }
7272 ]
7373 } ,
74-
7574 // list
7675 {
7776 path : '/list' ,
7877 name : 'list' ,
7978 component : RouteView ,
8079 redirect : '/list/table-list' ,
81- meta : { title : '列表页 ' , icon : 'table' , permission : [ 'table' ] } ,
80+ meta : { title : 'menu.list ' , icon : 'table' , permission : [ 'table' ] } ,
8281 children : [
8382 {
8483 path : '/list/table-list/:pageNo([1-9]\\d*)?' ,
8584 name : 'TableListWrapper' ,
8685 hideChildrenInMenu : true , // 强制显示 MenuItem 而不是 SubMenu
8786 component : ( ) => import ( '@/views/list/TableList' ) ,
88- meta : { title : '查询表格 ' , keepAlive : true , permission : [ 'table' ] }
87+ meta : { title : 'menu.list.table-list ' , keepAlive : true , permission : [ 'table' ] }
8988 } ,
9089 {
9190 path : '/list/basic-list' ,
9291 name : 'BasicList' ,
9392 component : ( ) => import ( '@/views/list/BasicList' ) ,
94- meta : { title : '标准列表 ' , keepAlive : true , permission : [ 'table' ] }
93+ meta : { title : 'menu.list.basic-list ' , keepAlive : true , permission : [ 'table' ] }
9594 } ,
9695 {
9796 path : '/list/card' ,
9897 name : 'CardList' ,
9998 component : ( ) => import ( '@/views/list/CardList' ) ,
100- meta : { title : '卡片列表 ' , keepAlive : true , permission : [ 'table' ] }
99+ meta : { title : 'menu.list.card-list ' , keepAlive : true , permission : [ 'table' ] }
101100 } ,
102101 {
103102 path : '/list/search' ,
104103 name : 'SearchList' ,
105104 component : ( ) => import ( '@/views/list/search/SearchLayout' ) ,
106105 redirect : '/list/search/article' ,
107- meta : { title : '搜索列表 ' , keepAlive : true , permission : [ 'table' ] } ,
106+ meta : { title : 'menu.list.search-list ' , keepAlive : true , permission : [ 'table' ] } ,
108107 children : [
109108 {
110109 path : '/list/search/article' ,
111110 name : 'SearchArticles' ,
112111 component : ( ) => import ( '../views/list/search/Article' ) ,
113- meta : { title : '搜索列表(文章) ' , permission : [ 'table' ] }
112+ meta : { title : 'menu.list.search-list.articles ' , permission : [ 'table' ] }
114113 } ,
115114 {
116115 path : '/list/search/project' ,
117116 name : 'SearchProjects' ,
118117 component : ( ) => import ( '../views/list/search/Projects' ) ,
119- meta : { title : '搜索列表(项目) ' , permission : [ 'table' ] }
118+ meta : { title : 'menu.list.search-list.projects ' , permission : [ 'table' ] }
120119 } ,
121120 {
122121 path : '/list/search/application' ,
123122 name : 'SearchApplications' ,
124123 component : ( ) => import ( '../views/list/search/Applications' ) ,
125- meta : { title : '搜索列表(应用) ' , permission : [ 'table' ] }
124+ meta : { title : 'menu.list.search-list.applications ' , permission : [ 'table' ] }
126125 }
127126 ]
128127 }
0 commit comments