From 09d44c24d7dbcc2bbc82951b8aa52df5f58b8145 Mon Sep 17 00:00:00 2001 From: AnandaTon Date: Wed, 18 Oct 2023 16:02:45 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B1=E0=B8=9A=20ui=20?= =?UTF-8?q?=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B8=AA=E0=B8=AD=E0=B8=9A=E0=B8=AA?= =?UTF-8?q?=E0=B8=A7=E0=B8=99=E0=B8=84=E0=B8=A7=E0=B8=B2=E0=B8=A1=E0=B8=9C?= =?UTF-8?q?=E0=B8=B4=E0=B8=94=E0=B8=97=E0=B8=B2=E0=B8=87=E0=B8=A7=E0=B8=B4?= =?UTF-8?q?=E0=B8=99=E0=B8=B1=E0=B8=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/2_InvestigateFacts/AddPage.vue | 3 +- .../{addInvestigate.vue => AddPage.vue} | 179 ++++++------------ .../3_InvestigateDisciplinary/Dialogbody.vue | 17 +- .../{director.vue => DirectorTable.vue} | 82 ++++---- .../3_InvestigateDisciplinary/MainPage.vue | 56 +++--- .../3_InvestigateDisciplinary/Table.vue | 6 +- .../11_discipline/interface/index/Main.ts | 96 ++++++---- src/modules/11_discipline/router.ts | 6 +- .../stroes/InvestigateDisStore.ts | 162 ++++++++++------ 9 files changed, 306 insertions(+), 301 deletions(-) rename src/modules/11_discipline/components/3_InvestigateDisciplinary/{addInvestigate.vue => AddPage.vue} (84%) rename src/modules/11_discipline/components/3_InvestigateDisciplinary/{director.vue => DirectorTable.vue} (98%) diff --git a/src/modules/11_discipline/components/2_InvestigateFacts/AddPage.vue b/src/modules/11_discipline/components/2_InvestigateFacts/AddPage.vue index 0e46075d4..36ffa0a90 100644 --- a/src/modules/11_discipline/components/2_InvestigateFacts/AddPage.vue +++ b/src/modules/11_discipline/components/2_InvestigateFacts/AddPage.vue @@ -3,6 +3,7 @@ import router from "@/router"; import { onMounted, ref, watch } from "vue"; import { useCounterMixin } from "@/stores/mixin"; import { useInvestigateFactStore } from "@/modules/11_discipline/stroes/InvestigateFactStore"; +import type { directorType } from "@/modules/11_discipline/interface/index/Main"; const investigateFactStore = useInvestigateFactStore(); const { filterFnOptionsType } = investigateFactStore; const mixin = useCounterMixin(); @@ -15,6 +16,7 @@ const { success, } = mixin; const complaint = ref(""); +const selected = ref([]); const complaintdetail = ref(""); const detail = ref(""); const fault = ref(""); @@ -28,7 +30,6 @@ const dateEnd = ref(); const investigation = ref(""); const daysExtend = ref(""); -