ปรับ Load รายละเอียดทะเบียนประวัติ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-12 11:10:42 +07:00
parent 9b4b5010c7
commit 77d8dee255
22 changed files with 468 additions and 190 deletions

View file

@ -383,7 +383,7 @@
hide-bottom-space
/> -->
<CurrencyInput
lazy-rules
lazy-rules
v-model="amount"
:edit="edit"
:options="{
@ -396,7 +396,7 @@
</div>
<div class="col-xs-4 col-sm-4 col-md-4">
<CurrencyInput
lazy-rules
lazy-rules
v-model="positionSalaryAmount"
:edit="edit"
:options="{
@ -434,7 +434,7 @@
hide-bottom-space
/> -->
<CurrencyInput
lazy-rules
lazy-rules
v-model="mouthSalaryAmount"
:edit="edit"
:options="{
@ -1483,7 +1483,7 @@ const nodeTree = async () => {
messageError($q, e);
})
.finally(() => {
hideLoader();
store.isLoad++;
});
};
@ -1568,7 +1568,8 @@ const fetchPosition = async () => {
})
.catch((e: any) => {})
.finally(() => {
hideLoader();
// hideLoader();
store.isLoad++;
});
};
@ -1578,7 +1579,7 @@ const fetchData = async () => {
await http
.get(config.API.profileSalaryId(profileId.value))
.then((res) => {
let data = res.data.result;
let data = res.data.result;
rows.value = [];
data.map((e: ResponseObject) => {
rows.value.push({
@ -1624,7 +1625,7 @@ const fetchData = async () => {
messageError($q, e);
})
.finally(() => {
hideLoader();
store.isLoad++;
});
}
};