fixing display
This commit is contained in:
parent
d210be40dd
commit
96ad297224
1 changed files with 8 additions and 1 deletions
|
|
@ -433,6 +433,9 @@ onMounted(() => {
|
||||||
<div v-else-if="col.name === 'org'" class="text-html">
|
<div v-else-if="col.name === 'org'" class="text-html">
|
||||||
{{ col.value ? col.value : "-" }}
|
{{ col.value ? col.value : "-" }}
|
||||||
</div>
|
</div>
|
||||||
|
<div v-else-if="col.name === 'posNo'">
|
||||||
|
{{ col.value && col.value != "undefined" ? col.value : "-" }}
|
||||||
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
{{ col.value ? col.value : "-" }}
|
{{ col.value ? col.value : "-" }}
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -495,7 +498,11 @@ onMounted(() => {
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
<div class="text-subtitle2 text-black q-ml-sm">
|
<div class="text-subtitle2 text-black q-ml-sm">
|
||||||
{{ props.row.posNo ? props.row.posNo : "-" }}
|
{{
|
||||||
|
props.row.posNo && props.row.posNo != "undefined"
|
||||||
|
? props.row.posNo
|
||||||
|
: "-"
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="text-grey">
|
<div class="text-grey">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue