This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-04 16:44:30 +07:00
parent b0b077b1d4
commit 0d5db9160e
7 changed files with 30 additions and 68 deletions

View file

@ -19,18 +19,15 @@ import DialogEditIDP from "@/modules/04_registryPerson/components/requestEdit/Di
const $q = useQuasar();
const store = useRequestEditStore();
const { showLoader, hideLoader, messageError, date2Thai } = useCounterMixin();
/**
* วแปร
*/
//
const status = ref<string>("PENDING"); //
const keyword = ref<string>(""); //
const statusOption = ref<DataOption[]>(store.optionStatusIDP); //
const modalEdit = ref<boolean>(false); //
const requestId = ref<string>(""); //id
/**
* Table
*/
//Table
const rows = ref<DataListsIDP[]>([]); //
const page = ref<number>(1); //
const pageSize = ref<number>(10); //
@ -279,6 +276,8 @@ watch(
}
);
/** HooK lifecycle ทำงานเมื่อมีการเรียกใช้งาน Componenets*/
onMounted(() => {
fetchData();
});