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.
23 lines
495 B
23 lines
495 B
8 months ago
|
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,
|
||
|
});
|
||
|
}
|