Fixes: 1) Replace `ElNotification` with `useNotification` across all components and composables; 2) Add missing semicolons, consistent formatting, and type annotations in multiple files; 3) Resolve non-reactive elements in wishlist and cart state management; Extra: 1) Update i18n translations with new strings for promocodes, balance, authentication, and profile settings; 2) Refactor SCSS styles including variable additions and component-specific tweaks; 3) Remove redundant queries, unused imports, and `storePage.ts` file for cleanup.
77 lines
No EOL
1.6 KiB
Vue
77 lines
No EOL
1.6 KiB
Vue
<template>
|
|
<form @submit.prevent="handleDeposit()" class="form">
|
|
<div class="form__box">
|
|
<ui-input
|
|
:type="'text'"
|
|
:placeholder="''"
|
|
v-model="amount"
|
|
:numberOnly="true"
|
|
:inputMode="'decimal'"
|
|
/>
|
|
<icon name="ic:baseline-compare-arrows" size="30" />
|
|
<ui-input
|
|
:type="'text'"
|
|
:placeholder="''"
|
|
v-model="amount"
|
|
:numberOnly="true"
|
|
:inputMode="'decimal'"
|
|
/>
|
|
</div>
|
|
<ui-button
|
|
class="form__button"
|
|
:isDisabled="!isFormValid"
|
|
:isLoading="loading"
|
|
>
|
|
{{ t('buttons.topUp') }}
|
|
</ui-button>
|
|
</form>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {useDeposit} from "~/composables/user";
|
|
|
|
const { t } = useI18n();
|
|
const companyStore = useCompanyStore();
|
|
|
|
const paymentMin = computed(() => companyStore.companyInfo?.paymentGatewayMinimum || 0);
|
|
const paymentMax = computed(() => companyStore.companyInfo?.paymentGatewayMaximum || 500);
|
|
|
|
const amount = ref<string>("0");
|
|
|
|
const isFormValid = computed(() => {
|
|
return (
|
|
amount.value >= paymentMin.value &&
|
|
amount.value <= paymentMax.value
|
|
);
|
|
});
|
|
|
|
const { deposit, loading } = useDeposit();
|
|
|
|
async function handleDeposit() {
|
|
await deposit(amount.value);
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
|
|
&__box {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 20px;
|
|
|
|
& span {
|
|
flex-shrink: 0;
|
|
align-self: center;
|
|
}
|
|
}
|
|
|
|
&__button {
|
|
width: fit-content;
|
|
padding-inline: 20px;
|
|
}
|
|
}
|
|
</style> |