You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
<template>
|
|
<div
|
|
class="wire-transfer-info tw-mb-[30px] tw-flex tw-flex-col tw-items-center"
|
|
>
|
|
<div v-if="this.confirmDays != '01'" class="info-description tw-mb-[15px]">
|
|
<div class="t14 md:t18 xl:t18 tw-text-primary-1 tw-flex tw-justify-center tw-items-center">
|
|
<img class="tw-mb-[2px] tw-mr-[5px] tw-w-[20px] tw-h-[20px]" src="~/assets/svg/warn.svg" alt="" />
|
|
{{ $t("be careful! The order has not yet been established. The order will only be established after the partner confirms it!") }}
|
|
</div>
|
|
</div>
|
|
<div class="info-description">
|
|
<div class="t14 md:t18 xl:t18 tw-text-center">
|
|
{{ $t("Thank you for your order. We have informed our partners;") }}
|
|
</div>
|
|
</div>
|
|
<div v-if="this.confirmDays != '01'" class="info-description">
|
|
<div class="t14 md:t18 xl:t18 tw-text-center">
|
|
{{ $t("If the order is established, it will be notified by email as soon as possible. Please pay attention again!") }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props:{
|
|
confirmDays:{
|
|
type: String,
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped></style>
|