From cc3e5cb0586cf26b8b2d04c61bf21c5b4f288f41 Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Thu, 15 Jan 2026 17:32:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=A3=80=E6=9F=A5=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E6=9F=A5=E7=9C=8B=E8=AF=A6=E6=83=85=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BranchCompany/Inspection/Records/List/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/Container/BranchCompany/Inspection/Records/List/index.js b/src/pages/Container/BranchCompany/Inspection/Records/List/index.js index 837aceb..ea71b37 100644 --- a/src/pages/Container/BranchCompany/Inspection/Records/List/index.js +++ b/src/pages/Container/BranchCompany/Inspection/Records/List/index.js @@ -39,8 +39,8 @@ function List(props) { const { tableProps, getData } = useTable(props["inspectionList"], { form, transform: formData => ({ - checkStartTime: formData.checkTime?.[0] ? (formData.checkTime[0] + " 00:00:00") : "", - checkEndTime: formData.checkTime?.[1] ? (formData.checkTime[1] + " 23:59:59") : "", + checkStartTime: formData.checkTime?.[0] ? (`${formData.checkTime[0]} 00:00:00`) : "", + checkEndTime: formData.checkTime?.[1] ? (`${formData.checkTime[1]} 23:59:59`) : "", }), params: { entrance: "0", @@ -199,7 +199,7 @@ function List(props) {