From 4ecea1ab0ef0123eaa750934cd23869faa7ffda7 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Fri, 14 Jul 2023 18:12:39 +0800 Subject: [PATCH] Add a special page for seeing all contacts to gift --- src/router/index.ts | 9 ++ src/views/ContactGiftingView.vue | 237 +++++++++++++++++++++++++++++++ 2 files changed, 246 insertions(+) create mode 100644 src/views/ContactGiftingView.vue diff --git a/src/router/index.ts b/src/router/index.ts index 626d971..0fdf05c 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -158,6 +158,15 @@ const routes: Array = [ /* webpackChunkName: "statistics" */ "../views/StatisticsView.vue" ), }, + { + path: "/contact-gives", + name: "contact-gives", + component: () => + import( + /* webpackChunkName: "statistics" */ "../views/ContactGiftingView.vue" + ), + }, + ]; /** @type {*} */ diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue new file mode 100644 index 0000000..f3ddc92 --- /dev/null +++ b/src/views/ContactGiftingView.vue @@ -0,0 +1,237 @@ + + +