Handy_Cao 6 月之前
父节点
当前提交
d0c366d32b

+ 2 - 1
public/locales/en-US.json

@@ -1408,7 +1408,8 @@
                 "accountcode": "Fund account numb",
                 "accountname": "Name",
                 "amount": "Amount",
-                "pay": "Pay"
+                "pay": "Pay",
+                "tips": "Failed to open"
             }
         },
         "reciver": {

+ 2 - 1
public/locales/th-TH.json

@@ -1411,7 +1411,8 @@
                 "accountcode": "บัญชีเงินทุน",
                 "accountname": "ชื่อ",
                 "amount": "ยอดเงิน",
-                "pay": "ชำระเงิน"
+                "pay": "ชำระเงิน",
+                "tips": "ล้มเหลวในการเปิด"
             }
         },
         "reciver": {

+ 2 - 1
public/locales/vi-VN.json

@@ -1408,7 +1408,8 @@
                 "accountcode": "Số tài khoản ngân quỹ",
                 "accountname": "Họ tên",
                 "amount": "Số tiền",
-                "pay": "Thanh toán"
+                "pay": "Thanh toán",
+                "tips": "Mở cửa thất bại"
             }
         },
         "reciver": {

+ 2 - 1
public/locales/zh-CN.json

@@ -1411,7 +1411,8 @@
                 "accountcode": "资金账号",
                 "accountname": "姓名",
                 "amount": "金额",
-                "pay": "支付"
+                "pay": "支付",
+                "tips": "打开失败"
             }
         },
         "reciver": {

+ 2 - 1
public/locales/zh-TW.json

@@ -1411,7 +1411,8 @@
                 "accountcode": "資金賬號",
                 "accountname": "姓名",
                 "amount": "金額",
-                "pay": "付款"
+                "pay": "付款",
+                "tips": "打開失敗"
             }
         },
         "reciver": {

+ 3 - 1
src/packages/tss/views/bank/wallet/components/inoutapply/Index.vue

@@ -54,11 +54,13 @@ import { currencyFormat, handleNoneValue, formatDate } from '@/filters'
 import AppModal from '@/components/base/modal/index.vue'
 import AppPullRefresh from '@mobile/components/base/pull-refresh/index.vue'
 import plus from '@/utils/h5plus'
+import { i18n } from '@/stores'
 
 const showModal = shallowRef(true)
 const error = shallowRef(false)
 const pullRefreshRef = shallowRef()
 const refresh = shallowRef(false) // 是否刷新父组件数据
+const { global: { t }} = i18n
 
 const { loading, pageIndex, pageCount, run, dataList } = useRequest(queryAccountInOutApply)
 
@@ -79,7 +81,7 @@ const goToAmtInByPaidUrl = (item: Model.AccountOutInApplyRsp) => {
         }
     }).then((res) => {
         plus.openURL(res.data.url, (error) => {
-            showFailToast(error.message || '打开失败')
+            showFailToast(error.message || t('banksign.wallet.inoutapply.tips'))
         })
     })
 }