|
@@ -9,6 +9,21 @@
|
|
|
<span>{{ currentAccount.currentbalance?.toFixed(2) }}</span>
|
|
<span>{{ currentAccount.currentbalance?.toFixed(2) }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</Field>
|
|
</Field>
|
|
|
|
|
+ <Field :label="$t('banksign.wallet.withdraw.bankname')">
|
|
|
|
|
+ <template #input>
|
|
|
|
|
+ {{ sign.bankname }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </Field>
|
|
|
|
|
+ <Field :label="$t('banksign.wallet.withdraw.bankaccountno')">
|
|
|
|
|
+ <template #input>
|
|
|
|
|
+ {{ sign.bankaccountno }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </Field>
|
|
|
|
|
+ <Field :label="$t('banksign.wallet.withdraw.bankaccountname')">
|
|
|
|
|
+ <template #input>
|
|
|
|
|
+ {{ sign.bankaccountname }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </Field>
|
|
|
<template v-for="(item, index) in configs" :key="index">
|
|
<template v-for="(item, index) in configs" :key="index">
|
|
|
<Field v-if="item.usabletype === 1 || item.usabletype === userStore.userInfo?.userinfotype"
|
|
<Field v-if="item.usabletype === 1 || item.usabletype === userStore.userInfo?.userinfotype"
|
|
|
:name="item.fieldcode" :label="item.fieldname" v-model="item.value"
|
|
:name="item.fieldcode" :label="item.fieldname" v-model="item.value"
|
|
@@ -64,7 +79,7 @@ import { useUserStore, useAccountStore, i18n } from '@/stores'
|
|
|
import moment from 'moment'
|
|
import moment from 'moment'
|
|
|
|
|
|
|
|
const formRef = shallowRef<FormInstance>()
|
|
const formRef = shallowRef<FormInstance>()
|
|
|
-const { formData, onSubmit } = useDoDeposit()
|
|
|
|
|
|
|
+const { formData, onSubmit, sign } = useDoDeposit()
|
|
|
const { router } = useNavigation()
|
|
const { router } = useNavigation()
|
|
|
const { getSystemParamValue } = useUserStore()
|
|
const { getSystemParamValue } = useUserStore()
|
|
|
const { configs, cusBank, startTime, endTime } = useDoCusBankExtendConfigs(2)
|
|
const { configs, cusBank, startTime, endTime } = useDoCusBankExtendConfigs(2)
|