You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
804 B
30 lines
804 B
6 months ago
|
const Base = () => import('/nerv-lib/saas/view/system/layout/content.vue');
|
||
|
const equipment = {
|
||
|
path: '/equipmentManage',
|
||
|
name: 'EquipmentManage',
|
||
|
meta: { title: '设备管理', icon: 'dicizhishou', index: 1 },
|
||
|
redirect: { name: 'homeIndex' },
|
||
|
children: [
|
||
|
{
|
||
|
path: 'ledger',
|
||
|
name: 'Ledger',
|
||
|
meta: { title: '设备台账', hideChildren: true, icon: 'dicizhishou' },
|
||
|
component: Base,
|
||
|
redirect: { name: 'LedgerIndex' },
|
||
|
children: [
|
||
|
{
|
||
|
path: 'index',
|
||
|
name: 'LedgerIndex',
|
||
|
component: () => import('/@/view/equipmentManage/ledger/index.vue'),
|
||
|
meta: {
|
||
|
title: '设备台账',
|
||
|
keepAlive: true,
|
||
|
backApi: [],
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
export default equipment;
|