添加物流bugfix

This commit is contained in:
taozi
2023-04-09 00:16:40 +08:00
parent 0c391fcdbc
commit 1b54f87365
3 changed files with 6 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import request from '@/utils/request'
// 提交售后
/**
*
*
订单号 orderCode;
服务类型 0仅退款1退货退款 serviceType;
申请原因 reasonForApplication;
@ -46,12 +46,12 @@ export function rebackAfterSeals (key, id) {
// 获取物流信息
export function getExpressData () {
return request.get('/yxExpress')
}
// 添加快递单号
export function addExpressData (params) {
return request.post('/addLogisticsInformation?' + `code=${params.code}&name=${params.name}&postalCode=${params.postalCode}&orderCode=${params.orderCode}&`, '', {
return request.post('/addLogisticsInformation?' + `code=${params.code}&name=${params.name}&id=${params.id}&postalCode=${params.postalCode}&orderCode=${params.orderCode}&`, '', {
login: true
})
}