From 6b9c1db13d602410b3d8ffed4e79ba57ff2bf623 Mon Sep 17 00:00:00 2001 From: 21819 Date: Mon, 22 Jan 2024 18:47:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6master=E5=88=86=E6=94=AF?= =?UTF-8?q?=EF=BC=8C=E4=BD=86=E6=98=AF=E5=88=87=E6=8D=A2=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E6=97=B6=E5=AD=98=E5=9C=A8=E8=A1=A8=E5=8D=95=E4=B8=A2=E5=A4=B1?= =?UTF-8?q?=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/holiday.js | 10 + src/components/HolidayList.vue | 470 +++++++++++++++++++++++++++++++++ src/components/ManageMail.vue | 4 +- src/layout/Index.vue | 16 +- src/router/index.js | 4 + src/util/request.js | 59 +++-- 6 files changed, 531 insertions(+), 32 deletions(-) create mode 100644 src/api/holiday.js create mode 100644 src/components/HolidayList.vue diff --git a/src/api/holiday.js b/src/api/holiday.js new file mode 100644 index 0000000..b717396 --- /dev/null +++ b/src/api/holiday.js @@ -0,0 +1,10 @@ +import { get, post} from "@/util/request" +export function getholiday(search) { + return get('/outer/holiday/getholiday?search='+search) +} +export function showholiday() { + return get('/outer/holiday/showholiday') +} +export function saveholiday(search) { + return post('/outer/holiday/saveholiday',search) +} diff --git a/src/components/HolidayList.vue b/src/components/HolidayList.vue new file mode 100644 index 0000000..370ebf2 --- /dev/null +++ b/src/components/HolidayList.vue @@ -0,0 +1,470 @@ + + + \ No newline at end of file diff --git a/src/components/ManageMail.vue b/src/components/ManageMail.vue index f967441..1c8007b 100644 --- a/src/components/ManageMail.vue +++ b/src/components/ManageMail.vue @@ -1,9 +1,9 @@