forked from verdnatura/salix-front
refs #6892 fix checkbox
This commit is contained in:
parent
04903928f5
commit
fdf09710d8
|
@ -143,8 +143,9 @@ watch(props, async () => {
|
|||
}
|
||||
.QCheckbox {
|
||||
display: flex;
|
||||
// position: absolute;
|
||||
// left: 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
margin-left: auto;
|
||||
color: gray;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -231,9 +231,11 @@ const creditWarning = computed(() => {
|
|||
:label="t('customer.summary.username')"
|
||||
:value="entity.account.name"
|
||||
/>
|
||||
<VnLv
|
||||
<QCheckbox
|
||||
class="QCheckbox"
|
||||
:label="t('customer.summary.webAccess')"
|
||||
:value="entity.account.active"
|
||||
v-model="entity.account.active"
|
||||
:disable="true"
|
||||
/>
|
||||
</QCard>
|
||||
<QCard class="vn-one" v-if="entity.account">
|
||||
|
|
Loading…
Reference in New Issue