Merge branches 'vapor/staging' and 'alipay-daifu' of gitlab.com:CIEFWorldwideSdnBhd/exchange-2.0 into vapor/staging

This commit is contained in:
edmondlang
2025-01-02 09:14:12 +08:00
2 changed files with 2 additions and 1 deletions
@@ -365,7 +365,7 @@
return this.oneSixEightEightServiceIds.includes(this.data.serviceType.id);
},
isAlipayOrder() {
return this.data.serviceType.id === 11;
return [11, 12].includes(this.data.serviceType.id);
},
filterBankType() {
if (this.isAlipayOrder) {
@@ -95,6 +95,7 @@
<div class="col">
<p class="no-margin" v-if="serviceType.id === 1">The recipient can expect to receive the transfer within <span class="text-success bold">3-5 working days</span>. Explore our BANK TRANSFER (SAVER) option for a better rate!</p>
<p class="no-margin" v-if="serviceType.id === 3">Enjoy a <span class="bold text-underline">better rate</span> with this option! The recipient will receive the transfer after <span class="text-success bold">5-7 working days.</span>.</p>
<p class="no-margin" v-if="serviceType.id === 12">"You can request Pay-on-Behalf via Alipay for platforms like Taobao, 1688, Pinduoduo, or any Alipay-supported platform. <br>Please use Alipay account "18925229649" to apply for Daifu. This account may change, so always confirm the latest Alipay account before placing an order.</p>
<p class="no-margin text-danger" v-if="[1, 3].includes(serviceType.id)">Please ensure is a PERSONAL bank account details. Company bank account details only allow to use as E2E service.</p>
<p class="no-margin text-danger" v-if="serviceType.id === 5">Cancellation of E2E service are strictly NO refund on the 2% transfer fee charge.</p>
</div>