export default {
  path: '/fee',
  name: '费控中心',
  icon: 'icon-feikongzhongxin',
  // authority: [],
  routes: [
    { path: '/fee', redirect: '/fee/consumablescost' },
    {
      path: '/fee/consumablescost',
      name: '耗材费',
      icon: 'icon-haocaifei',
      component: './Fee/ConsumablesCost/index',
    },
    {
      path: '/fee/maintenancepremium',
      name: '维保费',
      icon: 'icon-weibaofeiyong',
      component: './Fee/MaintenancePremium',
    },
    {
      path: '/fee/sporadicrepaircost',
      name: '零星修缮费',
      icon: 'icon-lingxingxiushan',
      component: './Fee/SporadicRepairCost',
    },
    {
      path: '/fee/summaryform',
      name: '汇总表单',
      icon: 'icon-huizongbiaodan',
      component: './Fee/SummaryForm'
    },
    // {
    //   path: '/fee/devicestable',
    //   name: '设备表',
    //   icon: 'global',
    //   component: './Fee/DevicesTable',
    // },
    // {
    //   path: '/fee/manpowercost',
    //   name: '人力费',
    //   icon: 'global',
    //   component: './Fee/ManPowerCost',
    // },
    // {
    //   path: '/fee/manhourcost',
    //   name: '人工工时费',
    //   icon: 'global',
    //   component: './Fee/ManHourCost',
    // },
  ],
};