|
@@ -2,7 +2,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<app-view class="wallet-transfer g-form">
|
|
<app-view class="wallet-transfer g-form">
|
|
|
<template #header>
|
|
<template #header>
|
|
|
- <app-navbar title="划转" />
|
|
|
|
|
|
|
+ <app-navbar :title="t('digital.wallet-transfer')" />
|
|
|
</template>
|
|
</template>
|
|
|
<div class="switch-group">
|
|
<div class="switch-group">
|
|
|
<span :class="{ active: formData.DigitalTransferType === 3 }" @click="formData.DigitalTransferType = 3">
|
|
<span :class="{ active: formData.DigitalTransferType === 3 }" @click="formData.DigitalTransferType = 3">
|
|
@@ -48,13 +48,13 @@ import { formatDecimal } from '@/filters'
|
|
|
import { useNavigation } from '@mobile/router/navigation'
|
|
import { useNavigation } from '@mobile/router/navigation'
|
|
|
import { getCurrencyList, getDigitalCurrencyList } from '@/constants/order'
|
|
import { getCurrencyList, getDigitalCurrencyList } from '@/constants/order'
|
|
|
import { digitalAccountTransferApply } from '@/services/api/digital'
|
|
import { digitalAccountTransferApply } from '@/services/api/digital'
|
|
|
-import { useAccountStore } from '@/stores'
|
|
|
|
|
|
|
+import { i18n, useAccountStore } from '@/stores'
|
|
|
import { useSpotAccountStore } from '../components/spot/composables'
|
|
import { useSpotAccountStore } from '../components/spot/composables'
|
|
|
import AppSelect from '@mobile/components/base/select/index.vue'
|
|
import AppSelect from '@mobile/components/base/select/index.vue'
|
|
|
import AppStepper from '@mobile/components/base/stepper/index.vue'
|
|
import AppStepper from '@mobile/components/base/stepper/index.vue'
|
|
|
|
|
|
|
|
const { routerBack } = useNavigation()
|
|
const { routerBack } = useNavigation()
|
|
|
-
|
|
|
|
|
|
|
+const { global: { t } } = i18n
|
|
|
const spotAccountStore = useSpotAccountStore()
|
|
const spotAccountStore = useSpotAccountStore()
|
|
|
const accountStore = useAccountStore()
|
|
const accountStore = useAccountStore()
|
|
|
|
|
|