fixing
This commit is contained in:
parent
c622df5b58
commit
3709a71b64
1 changed files with 7 additions and 5 deletions
|
|
@ -339,10 +339,14 @@ async function getTable() {
|
|||
posLevelCandidateName: data.posLevelCandidateName,
|
||||
posmasterId: data.posmasterId,
|
||||
statusNameCheck: convertContainStatus(data.statusId),
|
||||
deferment: data.deferment,
|
||||
deferment: data.isRelief,
|
||||
|
||||
statusName:
|
||||
data.statusId == "CONTAIN"
|
||||
data.isRelief === true &&
|
||||
data.statusId == "PREPARE-CONTAIN" &&
|
||||
data.node == null
|
||||
? "ขอผ่อนผัน"
|
||||
: data.statusId == "CONTAIN"
|
||||
? convertTypeCommand(data.typeCommand) + "แล้ว"
|
||||
: convertContainStatus(data.statusId) +
|
||||
(data.typeCommand != ""
|
||||
|
|
@ -884,9 +888,7 @@ onMounted(async () => {
|
|||
|
||||
<template v-else-if="col.name === 'statusName'">
|
||||
<div class="text-weight-medium">
|
||||
{{
|
||||
props.row.statusName == "เตรียม" ? "-" : props.row.statusName
|
||||
}}
|
||||
{{ props.row.statusName }}
|
||||
</div>
|
||||
</template>
|
||||
</q-td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue