up,基本关联功能ok

This commit is contained in:
2026-04-29 16:30:34 +08:00
parent f5b99f5bb3
commit 48d8523f26
4 changed files with 346 additions and 47 deletions
+6 -6
View File
@@ -114,6 +114,11 @@ const router = createRouter({
name: 'customer',
component: () => import('@/views/customer/CustomerList.vue'),
},
{
path: 'customer/add',
name: 'customer-add',
component: () => import('@/views/customer/CustomerFormPage.vue'),
},
{
path: 'customer/detail/:id',
name: 'customer-detail',
@@ -122,12 +127,7 @@ const router = createRouter({
{
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'),
component: () => import('@/views/customer/CustomerFormPage.vue'),
},
],
},