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

12 lines
324 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}`,
2023-10-27 15:37:24 +08:00
method: 'GET',
header: {
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
},
2023-09-22 11:08:14 +08:00
})
}