|
|
@@ -119,27 +119,22 @@ const onUploadSuccess = (filePath: string) => {
|
|
|
/// 提示信息
|
|
|
const doDepositWarning = () => {
|
|
|
if (cusBank.value.cusbankid === 'jdjs') {
|
|
|
- dialog({
|
|
|
- message: '是否已在银行端进行入金转账?',
|
|
|
- showCancelButton: true,
|
|
|
- confirmButtonText: '确认',
|
|
|
- cancelButtonText: '取消',
|
|
|
- }).then(() => {
|
|
|
- const now = moment(new Date().toISOString()).format('HH:mm')
|
|
|
- if (now > start && now < end.value) {
|
|
|
+ const now = moment(new Date().toISOString()).format('HH:mm')
|
|
|
+ if (now > start && now < end.value) {
|
|
|
+ dialog({ message: '是否已在银行端进行入金转账?', showCancelButton: true, confirmButtonText: '确认', cancelButtonText: '取消',}).then(() => {
|
|
|
/// 提交
|
|
|
formSubmit()
|
|
|
- } else {
|
|
|
- dialog({
|
|
|
- title: '提示',
|
|
|
- message: limitMsg,
|
|
|
- confirmButtonText: '我知道了'
|
|
|
- })
|
|
|
- }
|
|
|
- }).catch(() => {
|
|
|
- /// 返回上一层
|
|
|
- router.back()
|
|
|
- })
|
|
|
+ }).catch(() => {
|
|
|
+ /// 返回上一层
|
|
|
+ router.back()
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ dialog({
|
|
|
+ title: '提示',
|
|
|
+ message: limitMsg,
|
|
|
+ confirmButtonText: '我知道了'
|
|
|
+ })
|
|
|
+ }
|
|
|
} else {
|
|
|
/// 提交
|
|
|
formSubmit()
|