|
|
@@ -106,7 +106,7 @@ const doDepositWarning = () => {
|
|
|
const n = moment(res.data)
|
|
|
const s = moment(start, 'HH:mm')
|
|
|
const e = moment(end.value, 'HH:mm')
|
|
|
- if (n.isSameOrAfter(s) && n.isSameOrBefore(e)) {
|
|
|
+ if (n.isSameOrAfter(s) && n.isBefore(e)) {
|
|
|
dialog({ message: '是否已在银行端进行入金转账?', showCancelButton: true, confirmButtonText: '确认', cancelButtonText: '取消', }).then(() => {
|
|
|
/// 提交
|
|
|
formSubmit()
|