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.
14 lines
339 B
14 lines
339 B
|
2 years ago
|
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,
|
||
|
|
});
|
||
|
|
};
|