feat: 完成门店配置拆分并新增配送与自提设置页面

This commit is contained in:
2026-02-16 14:39:11 +08:00
parent 07495f8c35
commit 8d1325edf0
63 changed files with 6827 additions and 368 deletions

View File

@@ -28,6 +28,24 @@ const routes: RouteRecordRaw[] = [
title: '营业时间',
},
},
{
name: 'StoreDelivery',
path: '/store/delivery',
component: () => import('#/views/store/delivery/index.vue'),
meta: {
icon: 'lucide:truck',
title: '配送设置',
},
},
{
name: 'StorePickup',
path: '/store/pickup',
component: () => import('#/views/store/pickup/index.vue'),
meta: {
icon: 'lucide:shopping-bag',
title: '自提设置',
},
},
],
},
];