fix condition
This commit is contained in:
parent
dfa4a8284f
commit
41c453cd23
1 changed files with 6 additions and 6 deletions
|
|
@ -369,10 +369,10 @@ watch(
|
||||||
<q-btn
|
<q-btn
|
||||||
v-if="
|
v-if="
|
||||||
!props.row.isEdit &&
|
!props.row.isEdit &&
|
||||||
props.row.checkInStatus != 'ปกติ' &&
|
|
||||||
props.row.checkInStatus != '-' &&
|
props.row.checkInStatus != '-' &&
|
||||||
props.row.checkOutStatus != 'ปกติ' &&
|
props.row.checkOutStatus != '-' &&
|
||||||
props.row.checkOutStatus != '-'
|
(props.row.checkInStatus != 'ปกติ' ||
|
||||||
|
props.row.checkOutStatus != 'ปกติ')
|
||||||
"
|
"
|
||||||
style="min-width: 110px"
|
style="min-width: 110px"
|
||||||
outline
|
outline
|
||||||
|
|
@ -431,10 +431,10 @@ watch(
|
||||||
class="col"
|
class="col"
|
||||||
v-if="
|
v-if="
|
||||||
!props.row.isEdit &&
|
!props.row.isEdit &&
|
||||||
props.row.checkInStatus != 'ปกติ' &&
|
|
||||||
props.row.checkInStatus != '-' &&
|
props.row.checkInStatus != '-' &&
|
||||||
props.row.checkOutStatus != 'ปกติ' &&
|
props.row.checkOutStatus != '-' &&
|
||||||
props.row.checkOutStatus != '-'
|
(props.row.checkInStatus != 'ปกติ' ||
|
||||||
|
props.row.checkOutStatus != 'ปกติ')
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<q-btn
|
<q-btn
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue