@@ -157,19 +157,19 @@ export const asyncRouterMap = [
157
157
name : 'result' ,
158
158
component : RouteView ,
159
159
redirect : '/result/success' ,
160
- meta : { title : '结果页 ' , icon : 'check-circle-o' , permission : [ 'result' ] } ,
160
+ meta : { title : 'menu.result ' , icon : 'check-circle-o' , permission : [ 'result' ] } ,
161
161
children : [
162
162
{
163
163
path : '/result/success' ,
164
164
name : 'ResultSuccess' ,
165
165
component : ( ) => import ( /* webpackChunkName: "result" */ '@/views/result/Success' ) ,
166
- meta : { title : '成功 ' , keepAlive : false , hiddenHeaderContent : true , permission : [ 'result' ] }
166
+ meta : { title : 'menu.result.success ' , keepAlive : false , hiddenHeaderContent : true , permission : [ 'result' ] }
167
167
} ,
168
168
{
169
169
path : '/result/fail' ,
170
170
name : 'ResultFail' ,
171
171
component : ( ) => import ( /* webpackChunkName: "result" */ '@/views/result/Error' ) ,
172
- meta : { title : '失败 ' , keepAlive : false , hiddenHeaderContent : true , permission : [ 'result' ] }
172
+ meta : { title : 'menu.result.fail ' , keepAlive : false , hiddenHeaderContent : true , permission : [ 'result' ] }
173
173
}
174
174
]
175
175
} ,
@@ -180,25 +180,25 @@ export const asyncRouterMap = [
180
180
name : 'exception' ,
181
181
component : RouteView ,
182
182
redirect : '/exception/403' ,
183
- meta : { title : '异常页 ' , icon : 'warning' , permission : [ 'exception' ] } ,
183
+ meta : { title : 'menu.exception ' , icon : 'warning' , permission : [ 'exception' ] } ,
184
184
children : [
185
185
{
186
- path : '/exception/403' ,
186
+ path : '/exception/403' ,
187
187
name : 'Exception403' ,
188
188
component : ( ) => import ( /* webpackChunkName: "fail" */ '@/views/exception/403' ) ,
189
- meta : { title : '403 ' , permission : [ 'exception' ] }
189
+ meta : { title : 'menu.exception.not-permission ' , permission : [ 'exception' ] }
190
190
} ,
191
191
{
192
192
path : '/exception/404' ,
193
193
name : 'Exception404' ,
194
194
component : ( ) => import ( /* webpackChunkName: "fail" */ '@/views/exception/404' ) ,
195
- meta : { title : '404 ' , permission : [ 'exception' ] }
195
+ meta : { title : 'menu.exception.not-find ' , permission : [ 'exception' ] }
196
196
} ,
197
197
{
198
198
path : '/exception/500' ,
199
199
name : 'Exception500' ,
200
200
component : ( ) => import ( /* webpackChunkName: "fail" */ '@/views/exception/500' ) ,
201
- meta : { title : '500 ' , permission : [ 'exception' ] }
201
+ meta : { title : 'menu.exception.server-error ' , permission : [ 'exception' ] }
202
202
}
203
203
]
204
204
} ,
0 commit comments