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(""); -