fix: clear row = []
This commit is contained in:
parent
3210bbf687
commit
77202be224
3 changed files with 15 additions and 6 deletions
|
|
@ -1,7 +1,10 @@
|
|||
<script setup lang="ts">
|
||||
import { checkPermission } from "@/utils/permissions";
|
||||
import { ref, useAttrs, watch } from "vue";
|
||||
import type { Pagination } from "@/modules/03_recruiting/interface/index/Main";
|
||||
import type {
|
||||
Pagination,
|
||||
ExamResultOption,
|
||||
} from "@/modules/03_recruiting/interface/index/Main";
|
||||
|
||||
const attrs = ref<any>(useAttrs());
|
||||
const table = ref<any>(null);
|
||||
|
|
@ -48,9 +51,9 @@ const props = defineProps({
|
|||
},
|
||||
});
|
||||
|
||||
const optionsStatus = ref<any[]>([
|
||||
const optionsStatus = ref<ExamResultOption[]>([
|
||||
{ label: "ทั้งหมด", value: "" },
|
||||
{ label: "ขส.", value: "missed_exam" },
|
||||
{ label: "ขาดสอบ", value: "missed_exam" },
|
||||
{ label: "ผ่าน", value: "pass" },
|
||||
{ label: "ไม่ผ่าน", value: "notpass" },
|
||||
]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue