แก้ไขประเมิน

This commit is contained in:
Warunee Tamkoo 2023-12-23 10:20:41 +07:00
parent a07cc6d2a2
commit b984caaa3c
10 changed files with 121 additions and 29 deletions

View file

@ -17,6 +17,10 @@ const props = defineProps({
type: Array,
default: [],
},
fetchdata: {
type: Function,
default: () => "",
}
});
const { showLoader, hideLoader, messageError, dialogConfirm, date2Thai } =
mixin;
@ -118,6 +122,7 @@ function returnData(data: any) {
})
.finally(() => {
hideLoader();
props.fetchdata()
onClickClose();
});
});