From 3048aa3f881a7536383a7cde837b0d0b161382d6 Mon Sep 17 00:00:00 2001 From: Zy <1448159279@qq.com> Date: Thu, 13 Aug 2026 08:50:43 +0800 Subject: [PATCH] =?UTF-8?q?8/13=EF=BC=8C=20dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 4 +- src/api/system/parking/index.ts | 22 ++++ src/views/system/MonthCard/index.vue | 2 +- src/views/system/Sdb/SdbCashier/index.vue | 4 +- src/views/system/carArea/index.vue | 6 +- src/views/system/cars/index.vue | 12 +- src/views/system/houseRental/index.vue | 24 ++-- .../system/inspection/Overview/index.vue | 55 ++++----- .../inspection/Plan/addInspectionPlan.vue | 27 ++--- .../system/inspection/Statistics/index.vue | 6 +- src/views/system/parking/addParking.vue | 1 - src/views/system/parking/parkMain.vue | 100 +++++++++++++++- src/views/system/parking/parkReview.vue | 108 +++++++++++++++++- src/views/system/storeroom/index.vue | 14 +-- 14 files changed, 290 insertions(+), 95 deletions(-) diff --git a/.env.development b/.env.development index 2bd86fc..cd182d8 100644 --- a/.env.development +++ b/.env.development @@ -9,9 +9,9 @@ VITE_APP_ENV='development' # 开发环境 VITE_APP_BASE_API='/dev-api' # # 开发环境 接口代理地址 -VITE_APP_PROXY_API='http://192.168.1.222:8080' +#VITE_APP_PROXY_API='http://192.168.1.222:8080' # 开发环境 接口代理地址 -#VITE_APP_PROXY_API='http://192.168.1.6:8080' +VITE_APP_PROXY_API='http://192.168.1.6:8080' # 图片基础地址 VITE_IMG_URL='http://192.168.1.222:8080' diff --git a/src/api/system/parking/index.ts b/src/api/system/parking/index.ts index 2612a48..6f73ec5 100644 --- a/src/api/system/parking/index.ts +++ b/src/api/system/parking/index.ts @@ -102,3 +102,25 @@ export const GetVillageListParking = (villageid: string, houseId: string = undef } }); }; + +/** + * 查询 车位持有人信息 + * @returns {*} + * @param residentId + */ +export const getParkingResidentInfo = ( + residentId: string +): AxiosPromise<{ + id: ''; + name: ''; + type: ''; + status: ''; + idCard: ''; + phone: ''; + houseName: ''; +}> => { + return request({ + url: `/car/holder/${residentId}`, + method: 'GET' + }); +}; diff --git a/src/views/system/MonthCard/index.vue b/src/views/system/MonthCard/index.vue index fc6b826..ec6f148 100644 --- a/src/views/system/MonthCard/index.vue +++ b/src/views/system/MonthCard/index.vue @@ -54,7 +54,7 @@ - +