From 3fec8ef37c7e7922779f81131b9958ddf0a814a0 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Mon, 4 Nov 2024 15:29:16 +0700 Subject: [PATCH] =?UTF-8?q?tab=202=20=E0=B8=9C=E0=B8=A5=E0=B8=81=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B9=80=E0=B8=A1=E0=B8=B4?= =?UTF-8?q?=E0=B8=99=E0=B8=81=E0=B8=B2=E0=B8=A3=20=E0=B8=AF=20=E0=B9=81?= =?UTF-8?q?=E0=B8=AA=E0=B8=94=E0=B8=87=E0=B9=80=E0=B8=AB=E0=B8=A1=E0=B8=B7?= =?UTF-8?q?=E0=B8=AD=E0=B8=99=E0=B8=82=E0=B8=AD=E0=B8=87=E0=B8=A3=E0=B8=B0?= =?UTF-8?q?=E0=B8=9A=E0=B8=9A=E0=B8=9A=E0=B8=A3=E0=B8=B4=E0=B8=AB=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=E0=B8=88=E0=B8=B1=E0=B8=94=E0=B8=81=E0=B8=B2=E0=B8=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/01_SurveyPage.vue | 267 ++++++++++ .../components/02_ResultPage.vue | 475 ++++++++++++++++++ src/modules/15_probationReport/store.ts | 8 + src/modules/15_probationReport/views/main.vue | 281 +---------- 4 files changed, 776 insertions(+), 255 deletions(-) create mode 100644 src/modules/15_probationReport/components/01_SurveyPage.vue create mode 100644 src/modules/15_probationReport/components/02_ResultPage.vue create mode 100644 src/modules/15_probationReport/store.ts diff --git a/src/modules/15_probationReport/components/01_SurveyPage.vue b/src/modules/15_probationReport/components/01_SurveyPage.vue new file mode 100644 index 0000000..dbd17d5 --- /dev/null +++ b/src/modules/15_probationReport/components/01_SurveyPage.vue @@ -0,0 +1,267 @@ + + + diff --git a/src/modules/15_probationReport/components/02_ResultPage.vue b/src/modules/15_probationReport/components/02_ResultPage.vue new file mode 100644 index 0000000..6a0f505 --- /dev/null +++ b/src/modules/15_probationReport/components/02_ResultPage.vue @@ -0,0 +1,475 @@ + + + \ No newline at end of file diff --git a/src/modules/15_probationReport/store.ts b/src/modules/15_probationReport/store.ts new file mode 100644 index 0000000..0d20211 --- /dev/null +++ b/src/modules/15_probationReport/store.ts @@ -0,0 +1,8 @@ +import { defineStore } from "pinia"; +import { ref } from "vue"; +import type { DataOption } from "@/modules/10_registry/interface/index/Main"; + +export const useProbationReport = defineStore("ProbationReportStore", () => { + const tabMain = ref("SURVEY"); + return { tabMain }; +}); diff --git a/src/modules/15_probationReport/views/main.vue b/src/modules/15_probationReport/views/main.vue index d4d351c..228c509 100644 --- a/src/modules/15_probationReport/views/main.vue +++ b/src/modules/15_probationReport/views/main.vue @@ -1,99 +1,13 @@ -