fix: text-red isCondition
This commit is contained in:
parent
249424d4a5
commit
0c80012317
3 changed files with 6 additions and 5 deletions
|
|
@ -681,9 +681,10 @@ onBeforeMount(async () => {
|
|||
:key="col.name"
|
||||
:props="props"
|
||||
@click="onClickSelectPos(props.row.id)"
|
||||
:class="
|
||||
props.row.id === positionId ? 'bg-blue-2' : ''
|
||||
"
|
||||
:class="{
|
||||
'bg-blue-2': props.row.id === positionId,
|
||||
'text-red': props.row.isCondition === true,
|
||||
}"
|
||||
>
|
||||
<div v-if="col.name == 'no'">
|
||||
{{ props.rowIndex + 1 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue