fix(investigatefacts)sort

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-10-09 10:08:46 +07:00
parent 5825f72e26
commit b1532ada56
4 changed files with 190 additions and 229 deletions

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, reactive, watchEffect } from "vue";
import { ref, watchEffect } from "vue";
import { useRoute } from "vue-router";
import { useCounterMixin } from "@/stores/mixin";
@ -12,7 +12,7 @@ import DialogHeader from "@/components/DialogHeader.vue";
const route = useRoute();
const mixin = useCounterMixin();
const { dateThaiRange, convertDateToAPI } = mixin;
const { dateThaiRange } = mixin;
const store = useDisciplineMainStore();
const complainstStore = useComplainstDataStore();
const investigateStore = useInvestigateFactStore();
@ -34,7 +34,7 @@ function onClose() {
}
function fnSearch() {
props.getData?.(1);
props.getData?.();
onClose();
}