แก้ลูกจ้าง

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

@ -12,6 +12,7 @@ import type { SalaryFormType } from "@/modules/10_registry/interface/index/Main"
//history dialog
import DialogHistory from "@/modules/10_registry/Dialog/DialogHistory.vue";
const link = ref<string>("");
const $q = useQuasar();
const dataPerson = useDataStore();
const mixin = useCounterMixin();
@ -358,7 +359,7 @@ function onHistory(id: string) {
function getData() {
showLoader();
http
.get(config.API.dataUserSalaryByType(dataPerson.officerLink))
.get(config.API.dataUserSalaryByType(link.value))
.then((res) => {
const data = res.data.result;
rows.value = data;
@ -375,7 +376,7 @@ function getData() {
function getHistory() {
showLoader();
http
.get(config.API.dataUserSalaryHistoryByType(dataPerson.officerLink,idByRow.value))
.get(config.API.dataUserSalaryHistoryByType(link.value, idByRow.value))
.then((res) => {
const data = res.data.result;
rowsHistory.value = data;
@ -388,7 +389,8 @@ function getHistory() {
});
}
onMounted(() => {
onMounted(async () => {
link.value = await dataPerson.getProFileType();
getData();
});
</script>