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.
18 lines
381 B
18 lines
381 B
import request from "@/utils/request";
|
|
|
|
// web端首页信息查询
|
|
export function webHome(query) {
|
|
return request({
|
|
url: `/system/webHome`,
|
|
method: "get",
|
|
params: query,
|
|
});
|
|
}
|
|
// 查询企业待接单列表
|
|
export function PendingOrderList(deptId) {
|
|
return request({
|
|
url: `/order/wlPresetsOrder/query/PendingOrderList/${deptId}`,
|
|
method: "get",
|
|
});
|
|
}
|