tangning 1 year ago
parent
commit
0c42824291
4 changed files with 6 additions and 4 deletions
  1. 2 1
      src/i18n/en.js
  2. 2 1
      src/i18n/zh.js
  3. 1 1
      src/views/mobile/index.vue
  4. 1 1
      src/views/pc/index.vue

+ 2 - 1
src/i18n/en.js

@@ -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",

+ 2 - 1
src/i18n/zh.js

@@ -20,7 +20,8 @@ export default {
         paypal:'paypal',
         payPrice:'应付金额',
         priceUnit:'¥',
-        payOrder:'付款'
+        payOrder:'付款',
+        autoPayTips: '会员权益订阅成功,订单支付处理时间可能需要1~2个小时,请耐心等待。 (可在PayPal查阅实际支付情况)',
     },
     mall: {
         buyGoods: '购买商品',

+ 1 - 1
src/views/mobile/index.vue

@@ -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'){

+ 1 - 1
src/views/pc/index.vue

@@ -57,7 +57,7 @@ async function handleQueryOrderStatus() {
       t1 = null
       t1 && clearInterval(t1)
       showConfirm({
-        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',
         callback: () => {
           if (response.payStatus === 2) {