123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- title:string; 页面标题,通常必选。
- icon?:string; 图标,一般配合菜单使用。
- auth?:boolean; 是否需要登录权限。
- ignoreAuth?:boolean; 是否忽略权限。
- roles?:RoleEnum[]; 可以访问的角色
- keepAlive?:boolean; 是否开启页面缓存
- hideMenu?:boolean; 有些路由我们并不想在菜单中显示,比如某些编辑页面。
- order?:number; 菜单排序。
- frameUrl?:string; 嵌套外链。
- */
- export const list = [
- // {
- // title: '售后服务',
- // path: 'home', //对应name名称
- // icon: 'one',
- // auth: true,
- // order: 1,
- // children: [
- {
- title: '基础信息查询服务',
- path: 'home',
- children: [{
- title: '用户信息查询及变更服务',
- path: 'userQueryChange',
- children: []
- }, {
- title: '车辆信息查询及变更服务',
- path: 'vehicleEnquirChange',
- children: []
- }, {
- title: '签约信息查询服务',
- path: 'signingQuery',
- children: []
- }, {
- title: '卡片信息查询服务',
- path: 'cardQueries',
- children: []
- }, {
- title: 'OBU信息查询服务',
- path: 'OBUQuery',
- children: []
- }]
- },
- {
- title: '通行流水查询服务',
- path: 'trafficFlow',
- children: []
- }, {
- title: '黑名单查询服务',
- path: 'blacklistQuery',
- children: []
- }, {
- title: '卡签售后服务',
- path: 'home',
- children: [{
- title: '卡签补办服务',
- path: 'cardFillDo',
- children: []
- }, {
- title: '卡签续期服务',
- path: 'cardRenewal',
- children: []
- }, {
- title: '标签重新激活服务',
- path: 'TABActivate',
- children: []
- }, {
- title: '主动挂起(解除)服务',
- path: 'initiativeHangUp',
- children: []
- }, {
- title: '被动挂起(解除)服务',
- path: 'passivityHangUp',
- children: []
- }, {
- title: '卡签注销',
- path: 'TABActivate',
- children: []
- }]
- }, {
- title: '储值卡资金服务',
- path: 'home',
- children: [{
- title: '对公账户注册审核服务',
- path: 'home',
- children: [{
- title: '对公账户注册审核服务',
- path: 'corporateaccountManage',
- children: []
- }]
- }, {
- title: '充值及圈存服务',
- path: 'home',
- children: [{
- title: '储值卡充值服务(修复)[圈存]',
- path: 'cardrechargefix',
- children: []
- }, {
- title: '对公账户打款充值服务',
- path: 'advancepaymentaccount',
- children: []
- }]
- }, {
- title: '注销退费服务',
- path: 'cardrechargefix',
- children: []
- }, {
- title: '补卡额及补交服务',
- path: 'home',
- children: [{
- title: '储值卡-补卡额服务',
- path: 'supplyCardBalance',
- children: []
- }, {
- title: '储值卡-补交服务',
- path: 'addsupplyCardBalance',
- children: []
- }]
- }]
- }
- // ]
- // }
- ];
|