fix: UI fixes

This commit is contained in:
2025-08-16 22:41:32 +03:00
parent a0abc14c6d
commit 854dfdf7f2
3 changed files with 13 additions and 10 deletions

View File

@@ -10,7 +10,7 @@
@input="$emit('clearError')" @input="$emit('clearError')"
:maxlength="maxlength" :maxlength="maxlength"
/> />
<p v-if="error" class="label">{{ error }}</p> <p v-if="error" class="label text-error">{{ error }}</p>
</fieldset> </fieldset>
</template> </template>

View File

@@ -22,14 +22,17 @@
@clearError="checkout.clearError('lastName')" @clearError="checkout.clearError('lastName')"
/> />
<IMaskComponent <fieldset class="fieldset">
v-model="checkout.customer.phone" <IMaskComponent
type="tel" v-model="checkout.customer.phone"
class="input input-lg w-full" type="tel"
mask="+{7} (000) 000-00-00" class="input input-lg w-full"
placeholder="Введите телефон" mask="+{7} (000) 000-00-00"
:unmask="true" placeholder="Введите телефон"
/> :unmask="true"
/>
<p v-if="error" class="label text-error">{{ checkout.validationErrors.phone }}</p>
</fieldset>
<TgInput <TgInput
v-model="checkout.customer.email" v-model="checkout.customer.email"

View File

@@ -27,7 +27,7 @@
</li> </li>
</ul> </ul>
<p class="text-xs text-neutral mb-10"> <p class="text-xs mb-10">
Подтверждение отправлено Вам в личных сообщениях. Подтверждение отправлено Вам в личных сообщениях.
</p> </p>