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 {
|
.QCheckbox {
|
||||||
display: flex;
|
display: flex;
|
||||||
// position: absolute;
|
position: absolute;
|
||||||
// left: 0;
|
left: 0;
|
||||||
|
margin-left: auto;
|
||||||
color: gray;
|
color: gray;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -231,9 +231,11 @@ const creditWarning = computed(() => {
|
||||||
:label="t('customer.summary.username')"
|
:label="t('customer.summary.username')"
|
||||||
:value="entity.account.name"
|
:value="entity.account.name"
|
||||||
/>
|
/>
|
||||||
<VnLv
|
<QCheckbox
|
||||||
|
class="QCheckbox"
|
||||||
:label="t('customer.summary.webAccess')"
|
:label="t('customer.summary.webAccess')"
|
||||||
:value="entity.account.active"
|
v-model="entity.account.active"
|
||||||
|
:disable="true"
|
||||||
/>
|
/>
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-one" v-if="entity.account">
|
<QCard class="vn-one" v-if="entity.account">
|
||||||
|
|
Loading…
Reference in New Issue