@@ -20,7 +20,8 @@ export default {
paypal:'paypal',
payPrice:'Total Price',
priceUnit:'¥',
- payOrder:'Pay Now'
+ payOrder:'Pay Now',
+ autoPayTips: 'Membership subscription is successful, order payment processing time may take 1~2 hours, please wait patiently. (Actual payment status can be checked at PayPal)',
},
mall: {
buyGoods:"buy goods",
payPrice:'应付金额',
- payOrder:'付款'
+ payOrder:'付款',
+ autoPayTips: '会员权益订阅成功,订单支付处理时间可能需要1~2个小时,请耐心等待。 (可在PayPal查阅实际支付情况)',
buyGoods: '购买商品',
@@ -139,7 +139,7 @@ async function handlePayresult(){
item = orderDetal.value
}
showConfirm({
- text: item.payStatus == 2 ? t('payInfo.payfail') : t('mall.paySuccessTip'),
+ text: item.autoPay? t('payInfo.autoPayTips') : item.payStatus === 2 ? t('payInfo.payfail') : t('mall.paySuccessTip'),
type: item.payStatus == 2 ? 'err' : 'success',
callback: () => {
if(item.orderType == 'incrementOrder'){
@@ -57,7 +57,7 @@ async function handleQueryOrderStatus() {
t1 = null
t1 && clearInterval(t1)
- text: response.payStatus === 2 ? t('payInfo.payfail') : t('mall.paySuccessTip'),
+ text: response.autoPay? t('payInfo.autoPayTips') : response.payStatus === 2 ? t('payInfo.payfail') : t('mall.paySuccessTip'),
type: response.payStatus === 2 ? 'err' : 'success',
if (response.payStatus === 2) {