测量管理公共接口
This commit is contained in:
parent
9202f8f737
commit
a6bf63dd45
@ -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 })
|
||||
|
Loading…
Reference in New Issue
Block a user