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