filter รายการลา

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-12-14 15:31:19 +07:00
parent eb532c0dc6
commit 12e320f9ff
2 changed files with 4 additions and 5 deletions

View file

@ -17,11 +17,10 @@ import CalendarView from "@/modules/09_leave/components/2_Leave/Calendar.vue";
/**importStroe*/
import { useCounterMixin } from "@/stores/mixin";
import { useLeavelistDataStore } from "@/modules/09_leave/stores/LeaveStore";
import { useLeavelistDataStoreTest } from "@/modules/09_leave/stores/ListLeave";
const mixin = useCounterMixin();
const leaveStore = useLeavelistDataStore();
const APIDATA = useLeavelistDataStoreTest();
const { date2Thai, dateToISO, showLoader, hideLoader, messageError } = mixin;
const { fetchListLeave } = leaveStore;

View file

@ -63,15 +63,15 @@ const optionStatus = ref<DataOption[]>([
name: "ใหม่",
},
{
id: "PENDING ",
id: "PENDING",
name: "กำลังดำเนินการ",
},
{
id: "APPROVE ",
id: "APPROVE",
name: "อนุมัติ",
},
{
id: "REJECT ",
id: "REJECT",
name: "ไม่อนุมัติ",
},
]);