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