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.
20 lines
485 B
20 lines
485 B
import request from "@/router/axios"; |
|
//查询物流信息 |
|
export const getWuliuInfo = (param) => { |
|
return request({ |
|
url: "/pollApi/poll/query.do", |
|
// url: "https://poll.kuaidi100.com/poll/query.do", |
|
method: "post", |
|
headers: { |
|
"Content-Type": "application/x-www-form-urlencoded", |
|
}, |
|
params: param, |
|
}); |
|
}; |
|
export const getOrderList = (query) => { |
|
return request({ |
|
url: "/api/blade-desk/order/page", |
|
method: "get", |
|
params: query, |
|
}); |
|
};
|
|
|