diff --git a/src/layouts/BasicLayout.vue b/src/layouts/BasicLayout.vue index d8731db..7ce0ab1 100644 --- a/src/layouts/BasicLayout.vue +++ b/src/layouts/BasicLayout.vue @@ -67,6 +67,9 @@ 驿站列表 + + 配送时段 + @@ -280,6 +283,11 @@ export default defineComponent({ key: 'station-list', title: '驿站列表', path: '/community/station' + }, + { + key: 'community-time-periods', + title: '配送时段', + path: '/community/time-periods' } ] }, diff --git a/src/router/index.js b/src/router/index.js index 3376c1a..2c8caf7 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -57,6 +57,12 @@ const routes = [ name: 'StationList', component: () => import('../views/station/StationList.vue'), meta: { title: '驿站列表' } + }, + { + path: 'community/time-periods', + name: 'CommunityTimePeriods', + component: () => import('../views/community/TimePeriodList.vue'), + meta: { title: '小区配送时段' } } ] }, diff --git a/src/views/community/TimePeriodList.vue b/src/views/community/TimePeriodList.vue new file mode 100644 index 0000000..75e76e3 --- /dev/null +++ b/src/views/community/TimePeriodList.vue @@ -0,0 +1,464 @@ + + + + + \ No newline at end of file