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 @@ -