From 3f0884ffbade933178afa12c1de6b98fbdf8df90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E5=A6=8D?= <3096114695@qq.com> Date: Fri, 14 Jul 2023 16:46:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E9=85=8D=E7=94=B5=E7=AE=B1?= =?UTF-8?q?=E7=9B=91=E6=B5=8B=E4=BA=94=E4=B8=AA=E6=A8=A1=E5=9D=97=E7=9A=84?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=EF=BC=8C=E4=BC=98=E5=8C=96=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E6=80=BB=E7=BA=BF=E7=9A=84=E4=BD=BF=E7=94=A8=EF=BC=8C=E9=81=BF?= =?UTF-8?q?=E5=85=8D=E5=86=85=E5=AD=98=E6=B5=AA=E8=B4=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/modules/vehicle.ts | 11 + .../distributionMonitoring/bottomLeft.vue | 479 +++++++++++------- .../distributionMonitoring/bottomRight.vue | 66 ++- .../distributionMonitoring/topCenter.vue | 40 +- .../distributionMonitoring/topLeft.vue | 50 +- .../sevenLargeScreen/headNoise/leftBottom.vue | 6 +- .../laborManagement/horizontaL.vue | 6 +- 7 files changed, 383 insertions(+), 275 deletions(-) create mode 100644 src/api/modules/vehicle.ts diff --git a/src/api/modules/vehicle.ts b/src/api/modules/vehicle.ts new file mode 100644 index 00000000..3cfc2ed7 --- /dev/null +++ b/src/api/modules/vehicle.ts @@ -0,0 +1,11 @@ +import http from "@/api"; +const BASEURL = import.meta.env.VITE_API_URL; + +// 获取车辆通过信息 +export const getCarPassRecordApi = (params: {}) => { + return http.post(BASEURL + `/xmgl/carPassRecord/list`, params); +}; +// 获取出入场记录 +export const getEntryAndExitRecordsApi = (params: {}) => { + return http.post(BASEURL + `/xmgl/carPassRecord/getEntryAndExitRecordsToday`, params); +}; diff --git a/src/views/sevenLargeScreen/distributionMonitoring/bottomLeft.vue b/src/views/sevenLargeScreen/distributionMonitoring/bottomLeft.vue index 551aed61..ee8ee03a 100644 --- a/src/views/sevenLargeScreen/distributionMonitoring/bottomLeft.vue +++ b/src/views/sevenLargeScreen/distributionMonitoring/bottomLeft.vue @@ -3,7 +3,7 @@