mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-18 17:05:54 +08:00
优化部分样式问题,新增部分功能,解决发现的bug,暂未完全测试通过。
This commit is contained in:
@@ -2,6 +2,19 @@
|
||||
import {getRequest, postRequest, putRequest} from '@/libs/axios';
|
||||
|
||||
|
||||
|
||||
// 下载待发货的订单列表
|
||||
export const verificationCode = (verificationCode) => {
|
||||
return getRequest(`/orders/getOrderByVerificationCode/${verificationCode}`)
|
||||
}
|
||||
|
||||
|
||||
|
||||
// 下载待发货的订单列表
|
||||
export const downLoadDeliverExcel = (params) => {
|
||||
return getRequest(`/orders/downLoadDeliverExcel`, params)
|
||||
}
|
||||
|
||||
// 获取普通订单列表
|
||||
export const getOrderList = (params) => {
|
||||
return getRequest(`/orders`, params)
|
||||
@@ -62,8 +75,8 @@ export const getLogisticsChecked = () => {
|
||||
}
|
||||
|
||||
// 订单核验
|
||||
export const orderTake = (sn, params) => {
|
||||
return postRequest(`/orders/${sn}/take`, params)
|
||||
export const orderTake = (sn, verificationCode) => {
|
||||
return putRequest(`/orders/take/${sn}/${verificationCode}`)
|
||||
}
|
||||
|
||||
// 售后服务单
|
||||
|
||||
Reference in New Issue
Block a user