geer-builder 1.2.665 → 1.2.666
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/GCheckout.vue +7 -1
- package/package.json +1 -1
package/GCheckout.vue
CHANGED
|
@@ -720,13 +720,19 @@ export default {
|
|
|
720
720
|
CEBB: 'https://www.cebuanalhuillier.com/wp-content/uploads/2018/02/CLRB-new-logo.png',
|
|
721
721
|
DPAY: 'https://load.dragonpay.ph/images/dp-logo.png',
|
|
722
722
|
DPWL: 'https://load.dragonpay.ph/images/dp-logo.png',
|
|
723
|
-
PBCM: 'https://manilastandard.net/wp-content/uploads/2019/07/61b9c_pbcom.png'
|
|
723
|
+
PBCM: 'https://manilastandard.net/wp-content/uploads/2019/07/61b9c_pbcom.png',
|
|
724
|
+
CC: 'https://i.ibb.co/brMvw4b/cc.png',
|
|
725
|
+
'BillEase Installments': 'https://i.ibb.co/0mRhznG/billease.png'
|
|
724
726
|
};
|
|
725
727
|
|
|
726
728
|
if (logos[data.procId])
|
|
727
729
|
{
|
|
728
730
|
return logos[data.procId];
|
|
729
731
|
}
|
|
732
|
+
else if (logos[data.longName])
|
|
733
|
+
{
|
|
734
|
+
return logos[data.longName];
|
|
735
|
+
}
|
|
730
736
|
else if (data.logo)
|
|
731
737
|
{
|
|
732
738
|
return data.logo;
|