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.
|
|
<template> <div class="wire-transfer-info tw-mb-[15px] tw-flex tw-flex-col tw-items-center" > <h2 class="info-title t24 tw-text-black tw-mb-[10px]"> Thanks for your booking! </h2> <div class="info-description tw-mb-[15px]"> <div class="t14 tw-text-primary-1 tw-text-center"> {{ $t("Please transfer money to our bank account before yyyy/mm/dd ") }} </div> </div> <div class="bank-account-info tw-bg-neutrals-0 tw-p-[20px] tw-mb-[15px] tw-w-full tw-rounded-[20px] tw-border tw-border-solid tw-border-primary-1" > <div class="t14 tw-text-primary-1 tw-mb-[10px]">Bank account info:</div> <div class="element tw-body-4"> {{ $t("Bank name : ") }}E. SUN COMMERCIAL BANK, LTD., TAIPEI, TAIWAN </div> <div class="element tw-body-4"> <div class="tw-body-4">{{ $t("SWIFT Code : ") }}ESUNTWTP</div> </div> <div class="element tw-body-4"> {{ $t("Bank Address : ") }}No. 66-1,Sanchong Rd.,Nangang Dist., Taipei City 115602 , Taiwan </div> <div class="element tw-body-4"> {{ $t("Account Number : ") }}1182-879-079298 </div> <div class="element tw-body-4"> {{ $t("Account Name : ") }}SHOWEASY CO., LTD </div> </div> </div> </template> <script> export default {}; </script> <style lang="scss" scoped></style>
|