From a69cfd66201e3ea629539ab3c250c5a756a6f7b4 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 8 Sep 2023 18:10:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BA=A4=E8=B4=B9=E6=98=8E?= =?UTF-8?q?=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/pages/property/reportPayFeeDetail/reportPayFeeDetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.js b/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.js index ae21dfa5c..10a83532e 100644 --- a/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.js +++ b/public/pages/property/reportPayFeeDetail/reportPayFeeDetail.js @@ -91,7 +91,7 @@ $that.reportPayFeeDetailInfo.conditions.endTime = _value; let start = Date.parse(new Date($that.reportPayFeeDetailInfo.conditions.startTime)) let end = Date.parse(new Date($that.reportPayFeeDetailInfo.conditions.endTime)) - if (start - end >= 0) { + if (start - end > 0) { vc.toast("结束时间必须大于开始时间") $that.reportPayFeeDetailInfo.conditions.endTime = ''; }