From 76c0602564e76d100a140582169d06407253d91b Mon Sep 17 00:00:00 2001 From: aaron <> Date: Tue, 4 Mar 2025 12:37:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B0=8F=E5=8C=BA=E9=85=8D?= =?UTF-8?q?=E9=80=81=E6=97=B6=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/BasicLayout.vue | 8 + src/router/index.js | 6 + src/views/community/TimePeriodList.vue | 464 +++++++++++++++++++++++++ 3 files changed, 478 insertions(+) create mode 100644 src/views/community/TimePeriodList.vue 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