Browse Source

优化

master
yunuo970428 1 year ago
parent
commit
c4981a0b31
  1. 54
      yxt-as-ui/src/router/index.js

54
yxt-as-ui/src/router/index.js

@ -61,8 +61,44 @@ export const constantRoutes = [
path: '/repairbill/repairbill',
component: () => import('@/views/operation/repairbill/repairbill.vue'),
name: 'RepairBill',
meta: { title: '维修开单', noCache: true }
}
meta: { title: '维修开单管理(登记)', noCache: true }
},
{
path: '/repairbill/repairbillBySendWork',
component: () => import('@/views/operation/repairbill/repairbillBySendWork.vue'),
name: 'RepairBillBySendWork',
meta: { title: '维修开单管理(派工)', noCache: true }
},
{
path: '/repairbill/repairbillByMaintain',
component: () => import('@/views/operation/repairbill/repairbillByMaintain.vue'),
name: 'RepairBillByMaintain',
meta: { title: '维修开单管理(维修)', noCache: true }
},
{
path: '/repairbill/repairbillByBeCompleted',
component: () => import('@/views/operation/repairbill/repairbillByBeCompleted.vue'),
name: 'RepairBillByBeCompleted',
meta: { title: '维修开单管理(竣工)', noCache: true }
},
{
path: '/repairbill/repairbillBySettleAccounts',
component: () => import('@/views/operation/repairbill/repairbillBySettleAccounts.vue'),
name: 'RepairBillBySettleAccounts',
meta: { title: '维修开单管理(结算)', noCache: true }
},
{
path: '/repairbill/repairbillBYLeaveFactory',
component: () => import('@/views/operation/repairbill/repairbillBYLeaveFactory.vue'),
name: 'RepairBillBYLeaveFactory',
meta: { title: '维修开单管理(出厂)', noCache: true }
},
// {
// path: '/workslrsettlement/workslrsettlement',
// component: () => import('@/views/operation/workslrsettlement/workslrsettlement.vue'),
// name: 'WorkSLRSettlement',
// meta: { title: '工单反结算管理', noCache: true }
// },
]
},
@ -305,7 +341,19 @@ export const constantRoutes = [
component: () => import('@/views/basicinformation/team/team.vue'),
name: 'Team',
meta: { title: '班组管理', noCache: true }
}
},
{
path: '/suppliertype/suppliertype',
component: () => import('@/views/basicinformation/suppliertype/suppliertype.vue'),
name: 'SupplierType',
meta: { title: '供应商类型管理', noCache: true }
},
// {
// path: '/supplier/supplier',
// component: () => import('@/views/basicinformation/supplier/supplier.vue'),
// name: 'Supplier',
// meta: { title: '供应商管理', noCache: true }
// }
]
},
// 404 page must be placed at the end !!!

Loading…
Cancel
Save