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