|
|
@@ -94,7 +94,7 @@ const formRules: { [key: string]: FieldRule[] } = {
|
|
|
message: t('banksign.wallet.deposit.pleaseenterinamount'),
|
|
|
}],
|
|
|
filePath: [{
|
|
|
- message: t('banksign.wallet.deposit.pleaseuploadthetransfervoucher'),
|
|
|
+ message: t('banksign.wallet.deposit.tips2'),
|
|
|
validator: () => {
|
|
|
/// 是否非必填
|
|
|
const ismandatory = Number(getSystemParamValue('316'))
|
|
|
@@ -115,7 +115,7 @@ const doDepositWarning = () => {
|
|
|
const s = moment(startTime.value, 'HH:mm')
|
|
|
const e = moment(endTime.value, 'HH:mm')
|
|
|
if (n.isSameOrAfter(s) && n.isBefore(e)) {
|
|
|
- dialog({ message: t('banksign.wallet.deposit.whetherthedeposittransferhasbeenmadeatthebankend'), showCancelButton: true, confirmButtonText: t('operation.confirm'), cancelButtonText: t('operation.cancel'), }).then(() => {
|
|
|
+ dialog({ message: t('banksign.wallet.deposit.tips1'), showCancelButton: true, confirmButtonText: t('operation.confirm'), cancelButtonText: t('operation.cancel'), }).then(() => {
|
|
|
/// 提交
|
|
|
formSubmit()
|
|
|
}).catch(() => {
|
|
|
@@ -159,7 +159,7 @@ const formSubmit = () => {
|
|
|
let isComplete = false // 请求是否结束
|
|
|
const complete = () => {
|
|
|
isComplete = true
|
|
|
- dialog('提交成功,请稍后确认结果').then(() => {
|
|
|
+ dialog(i18n.global.t('banksign.wallet.withdraw.submitsuccess')).then(() => {
|
|
|
router.back()
|
|
|
})
|
|
|
}
|
|
|
@@ -173,7 +173,7 @@ const formSubmit = () => {
|
|
|
}
|
|
|
}).catch((err) => {
|
|
|
if (!isComplete) {
|
|
|
- dialog(t('common.submitfailure') + err).then(() => {
|
|
|
+ dialog(i18n.global.t('common.submitfailure') + err).then(() => {
|
|
|
formData.Amount = undefined
|
|
|
})
|
|
|
}
|