no message
This commit is contained in:
parent
16b932e565
commit
ca5b49d16b
2 changed files with 10 additions and 6 deletions
|
|
@ -352,8 +352,10 @@ watch(
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="col.name == 'order_number'">
|
<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>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -242,11 +242,13 @@ async function getpersonalList() {
|
||||||
Opfillter.value = storeFn.optionStatusProbation;
|
Opfillter.value = storeFn.optionStatusProbation;
|
||||||
totalList.value = Math.ceil(resTotal / pagination.value.rowsPerPage);
|
totalList.value = Math.ceil(resTotal / pagination.value.rowsPerPage);
|
||||||
total.value = resTotal;
|
total.value = resTotal;
|
||||||
})
|
|
||||||
.catch(() => {})
|
|
||||||
.finally(() => {
|
|
||||||
hideLoader();
|
hideLoader();
|
||||||
});
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
messageError($q, e);
|
||||||
|
hideLoader();
|
||||||
|
})
|
||||||
|
.finally(() => {});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function onclickAddProbation() {
|
async function onclickAddProbation() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue