You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
677 B
33 lines
677 B
import request from "@/utils/request-yunkun.js";
|
|
const sessionId = localStorage.getItem("SESSION_ID");
|
|
// 登录
|
|
export function lgoin(query) {
|
|
return request({
|
|
url: "/login.jsp?userId=99999&password=6d0fd76ab81325588d8065ec1036fdd3&loginType=user",
|
|
method: "get",
|
|
params: query,
|
|
});
|
|
}
|
|
|
|
// 查询车辆明细列表
|
|
|
|
export function getCarList(query) {
|
|
query.sessionId = sessionId;
|
|
return request({
|
|
url: "/get_car_list.jsp",
|
|
method: "GET",
|
|
params: query,
|
|
});
|
|
}
|
|
|
|
//车辆点位查询
|
|
|
|
export function getCarPoint(query) {
|
|
query.sessionId = sessionId;
|
|
return request({
|
|
url: "/get_gps_r.jsp",
|
|
method: "GET",
|
|
params: query,
|
|
});
|
|
}
|