no message

This commit is contained in:
setthawutttty 2024-10-07 16:38:03 +07:00
parent 16b932e565
commit ca5b49d16b
2 changed files with 10 additions and 6 deletions

View file

@ -352,8 +352,10 @@ watch(
</div>
<div v-else-if="col.name == 'order_number'">
{{
props.row.order_number != "xx/2566"
? props.row.order_number
props.row.order_number
? props.row.order_number != "xx/2566"
? props.row.order_number
: "-"
: "-"
}}
</div>

View file

@ -242,11 +242,13 @@ async function getpersonalList() {
Opfillter.value = storeFn.optionStatusProbation;
totalList.value = Math.ceil(resTotal / pagination.value.rowsPerPage);
total.value = resTotal;
})
.catch(() => {})
.finally(() => {
hideLoader();
});
})
.catch((e) => {
messageError($q, e);
hideLoader();
})
.finally(() => {});
}
async function onclickAddProbation() {