From 58c5c1d364dda6472c1cd2be6bd6736ff2609a7e Mon Sep 17 00:00:00 2001 From: xingjx Date: Wed, 17 Jan 2024 11:32:08 +0800 Subject: [PATCH] =?UTF-8?q?fix():=E7=89=B9=E6=AE=8A=E6=94=BE=E8=A1=8C?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E9=A1=B5=E9=9D=A2=E6=8E=A5=E5=8F=A3=E5=AF=B9?= =?UTF-8?q?=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../OutExceptionMgm/SpecialReleaseMgm/index.jsx | 39 +++++++++++----------- src/pages/OutRoadMgm/OutRoadOverview/loadable.jsx | 36 +++++++++++++++----- .../ConfigParking/TollCollectorManagement.jsx | 2 +- src/services/OutRoadMgm/OutExceptionMgm/index.js | 20 +++++++++++ src/services/OutRoadMgm/OutRoadOverview.js | 9 +++++ 5 files changed, 77 insertions(+), 29 deletions(-) diff --git a/src/pages/OutRoadMgm/OutExceptionMgm/SpecialReleaseMgm/index.jsx b/src/pages/OutRoadMgm/OutExceptionMgm/SpecialReleaseMgm/index.jsx index fca0de6..5459214 100644 --- a/src/pages/OutRoadMgm/OutExceptionMgm/SpecialReleaseMgm/index.jsx +++ b/src/pages/OutRoadMgm/OutExceptionMgm/SpecialReleaseMgm/index.jsx @@ -15,7 +15,6 @@ import { import moment from "moment"; import ajax from '@/services' import { TableModule } from "@/components"; -import { dictionary } from "@/config/common.js"; import "./index.scss"; //specialReleaseMgm function SpecialReleaseMgm() { @@ -42,56 +41,56 @@ function SpecialReleaseMgm() { { title: "车牌号", dataIndex: "plate", - key: "plate_old", + key: "plate", align: "center", fixed: "right", }, { title: "入场时间", - dataIndex: "plate", - key: "plate_new", + dataIndex: "in_time", + key: "in_time", align: "center", fixed: "right", }, { title: "出场时间", - dataIndex: "cr", - key: "cr", + dataIndex: "out_time", + key: "out_time", align: "center", fixed: "right", }, { title: "应收金额", - dataIndex: "co", - key: "co", + dataIndex: "shouldPay", + key: "shouldPay", align: "center", fixed: "right", }, { title: "通道名称", - dataIndex: "op", - key: "oe", + dataIndex: "parkName", + key: "parkName", align: "center", fixed: "right", }, { title: "开闸时间", - dataIndex: "o", - key: "o", + dataIndex: "open_gate_time", + key: "open_gate_time", align: "center", fixed: "right", }, { title: "开闸原因", - dataIndex: "", - key: "o", + dataIndex: "reason", + key: "reason", align: "center", fixed: "right", }, { title: "操作人", - dataIndex: "o", - key: "o", + dataIndex: "operatename", + key: "operatename", align: "center", fixed: "right", }, @@ -106,7 +105,7 @@ function SpecialReleaseMgm() {