From 321ff3452bcfdcaaa89f78e2e4ffafaa5d0eb1f8 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Sun, 9 Mar 2025 23:40:18 +0800 Subject: [PATCH] update --- src/layouts/BasicLayout.vue | 8 + src/router/index.js | 12 + src/views/community/CommunitySetDetail.vue | 500 +++++++++++++++++++++ src/views/community/CommunitySetList.vue | 441 ++++++++++++++++++ 4 files changed, 961 insertions(+) create mode 100644 src/views/community/CommunitySetDetail.vue create mode 100644 src/views/community/CommunitySetList.vue diff --git a/src/layouts/BasicLayout.vue b/src/layouts/BasicLayout.vue index 5e1e8a2..8667e2b 100644 --- a/src/layouts/BasicLayout.vue +++ b/src/layouts/BasicLayout.vue @@ -73,6 +73,9 @@ 配送时段 + + 小区集合 + @@ -296,6 +299,11 @@ export default defineComponent({ key: 'community-time-periods', title: '配送时段', path: '/community/time-periods' + }, + { + key: 'community-sets', + title: '小区集合', + path: '/community/sets' } ] }, diff --git a/src/router/index.js b/src/router/index.js index 99b4b69..4898072 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -69,6 +69,18 @@ const routes = [ name: 'CommunityTimePeriods', component: () => import('../views/community/TimePeriodList.vue'), meta: { title: '小区配送时段' } + }, + { + path: 'community/sets', + name: 'CommunitySets', + component: () => import('../views/community/CommunitySetList.vue'), + meta: { title: '小区集合' } + }, + { + path: 'community/sets/:id', + name: 'CommunitySetDetail', + component: () => import('../views/community/CommunitySetDetail.vue'), + meta: { title: '小区集合详情' } } ] }, diff --git a/src/views/community/CommunitySetDetail.vue b/src/views/community/CommunitySetDetail.vue new file mode 100644 index 0000000..c6c3b3c --- /dev/null +++ b/src/views/community/CommunitySetDetail.vue @@ -0,0 +1,500 @@ + + + + + \ No newline at end of file diff --git a/src/views/community/CommunitySetList.vue b/src/views/community/CommunitySetList.vue new file mode 100644 index 0000000..cc40536 --- /dev/null +++ b/src/views/community/CommunitySetList.vue @@ -0,0 +1,441 @@ + + + + + \ No newline at end of file