แก้ลูกจ้าง

This commit is contained in:
setthawutttty 2024-11-07 14:51:21 +07:00
parent aa65b8165d
commit 7d75535d15
25 changed files with 942 additions and 892 deletions

View file

@ -16,6 +16,7 @@ import type {
//history dialog
import DialogHistory from "@/modules/10_registry/Dialog/DialogHistory.vue";
const link = ref<string>("");
const $q = useQuasar();
const mixin = useCounterMixin();
const dataPerson = useDataStore()
@ -285,7 +286,7 @@ function onHistory() {
function getData() {
showLoader();
http
.get(config.API.dataUserGovernmentByType(dataPerson.officerLink))
.get(config.API.dataUserGovernmentByType(link.value))
.then((res) => {
const data = res.data.result;
formData.org = data.org;
@ -336,7 +337,8 @@ function getHistory() {
});
}
onMounted(() => {
onMounted(async() => {
link.value = await dataPerson.getProFileType();
getData();
});
</script>