工单可以关联客户

This commit is contained in:
2026-04-29 14:52:42 +08:00
parent dc6e423299
commit af5dc954e3
17 changed files with 1993 additions and 83 deletions
+20 -5
View File
@@ -103,17 +103,32 @@ const router = createRouter({
name: 'warehouse-item-edit',
component: () => import('@/views/warehouse/WarehouseItemEdit.vue'),
},
{
path: 'admin',
name: 'admin',
component: () => import('@/views/AdminView.vue'),
},
{
path: 'sysadmin',
name: 'sysadmin',
component: () => import('@/views/sysadmin/SysAdminView.vue'),
meta: { requireSysAdmin: true },
},
{
path: 'customer',
name: 'customer',
component: () => import('@/views/customer/CustomerList.vue'),
},
{
path: 'customer/detail/:id',
name: 'customer-detail',
component: () => import('@/views/customer/CustomerDetail.vue'),
},
{
path: 'customer/edit/:id',
name: 'customer-edit',
component: () => import('@/views/customer/CustomerEdit.vue'),
},
{
path: 'customer/edit/:id',
name: 'customer-edit',
component: () => import('@/views/customer/CustomerFormModal.vue'),
},
],
},