2 changed files with 9 additions and 7 deletions
@ -1,9 +1,9 @@ |
|||
import { request } from '../../http' |
|||
// 找车
|
|||
export const getFindCar = (plateId: string) => request<CarInfo>({ url: `/v1/web/thirdPark`, params: { plateId }, method: 'get' }) |
|||
export const getFindCar = (plateId: string) => request<CarInfo>({ url: `/guide/v1/web/thirdPark`, params: { plateId }, method: 'get' }) |
|||
|
|||
// 周边交通
|
|||
export const getThirdTraffic = (projectCode: string) => |
|||
request<Traffic[]>({ url: `/v1/web/thirdTraffic`, params: { projectCode }, method: 'get' }) |
|||
request<Traffic[]>({ url: `/guide/v1/web/thirdTraffic`, params: { projectCode }, method: 'get' }) |
|||
|
|||
export const getParkingInfo = () => request<ParkingInfo>({ url: `/JSON/getParkingInfo.json` }) |
|||
|
|||
Loading…
Reference in new issue