From a6bf63dd45cd7d15e063d2281d8e2c1760c52904 Mon Sep 17 00:00:00 2001 From: xaol <3182401657@qq.com> Date: Tue, 18 Feb 2025 08:17:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E9=87=8F=E7=AE=A1=E7=90=86=E5=85=AC?= =?UTF-8?q?=E5=85=B1=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/home/clgl/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/api/home/clgl/index.ts b/src/api/home/clgl/index.ts index 3e8651e..a3fa562 100644 --- a/src/api/home/clgl/index.ts +++ b/src/api/home/clgl/index.ts @@ -29,6 +29,15 @@ export interface ClglVO { // 车辆管理 API export const ClglApi = { + // 查询车辆管理分页 + getPublicClglPage: async (params: any) => { + return await request.get({ url: `/home/clgl/public/page`, params }) + }, + + // 查询车辆管理详情 + getPublicClgl: async (id: number) => { + return await request.get({ url: `/home/clgl/public/get?id=` + id }) + }, // 查询车辆管理分页 getClglPage: async (params: any) => { return await request.get({ url: `/home/clgl/page`, params })