add chat-card

1. add chat card
2. fix settings (output object)
3. add input phone and email to user
4. fix empty string to null
This commit is contained in:
2025-07-29 13:26:46 +03:00
parent 462ed2b671
commit feb351424e
14 changed files with 215 additions and 118 deletions

View File

@@ -98,6 +98,28 @@
class = "w100 q-pt-sm"
:label = "$t('user_block__role')"
/>
<q-input
v-model.trim="modelValue.phone"
dense
filled
class = "w100 q-pt-sm"
>
<template #prepend>
<q-icon name="mdi-phone-outline"/>
</template>
</q-input>
<q-input
v-model.trim="modelValue.email"
dense
filled
class = "w100 q-pt-sm"
>
<template #prepend>
<q-icon name="mdi-email-outline"/>
</template>
</q-input>
</div>
</div>