fix: UI fixes
This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="text-xs text-neutral mb-10">
|
<p class="text-xs mb-10">
|
||||||
Подтверждение отправлено Вам в личных сообщениях.
|
Подтверждение отправлено Вам в личных сообщениях.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user