xinelu-applet-ui/api/pagesB/logistics/index.js

9 lines
243 B
JavaScript
Raw Normal View History

2023-09-22 11:37:39 +08:00
import request from "../../request.js"
2023-09-22 11:08:14 +08:00
// 物流查询接口
export function queryLogistics(orderNo,expressNo){
return request({
url: `/nurseApp/logistics/queryLogisticsInfo?orderNo=${orderNo}&expressNo=${expressNo}`,
method: 'GET'
})
}