Compare commits
No commits in common. "745444dafc23462d8b9b0e0e26ad240cac72288d" and "cf8908772ec8b972694d2a284fc01b3d77e2f282" have entirely different histories.
745444dafc
...
cf8908772e
|
@ -115,7 +115,6 @@ const total = computed(() => {
|
||||||
`Верхняя планка, ${top_count}: ${top_count} x ${length} x ${bar} = ${roubleSign.format(top)}`,
|
`Верхняя планка, ${top_count}: ${top_count} x ${length} x ${bar} = ${roubleSign.format(top)}`,
|
||||||
`Итого ${roubleSign.format(total)}`
|
`Итого ${roubleSign.format(total)}`
|
||||||
].filter(Boolean)
|
].filter(Boolean)
|
||||||
|
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
@ -127,7 +126,6 @@ const total = computed(() => {
|
||||||
<input type="text" placeholder="Ваше имя" v-model="modal_data.name" @keyup="validate" />
|
<input type="text" placeholder="Ваше имя" v-model="modal_data.name" @keyup="validate" />
|
||||||
<input type="phone" placeholder="Номер телефона или e-mail" v-model="modal_data.phone"
|
<input type="phone" placeholder="Номер телефона или e-mail" v-model="modal_data.phone"
|
||||||
@keypress="validateInput" @keyup="validate" />
|
@keypress="validateInput" @keyup="validate" />
|
||||||
Итого: {{roubleSign.format(total)}}
|
|
||||||
<div class="flex gap-4">
|
<div class="flex gap-4">
|
||||||
<button class="not-prose" :disabled="modal_form.disabled" type="submit">Отправить</button>
|
<button class="not-prose" :disabled="modal_form.disabled" type="submit">Отправить</button>
|
||||||
<button class="not-prose" type="reset" @click="toggleModal">Отмена</button>
|
<button class="not-prose" type="reset" @click="toggleModal">Отмена</button>
|
||||||
|
|
Loading…
Reference in New Issue