|
@@ -48,20 +48,10 @@ export const update = (row) => {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-export const confirm = (orderId) => {
|
|
|
+export const confirm = (orderId, afterSalesId) => {
|
|
|
return request({
|
|
|
url: '/api/finance/aftersales/confirm',
|
|
|
method: 'post',
|
|
|
- params: {
|
|
|
- orderId
|
|
|
- }
|
|
|
- })
|
|
|
-}
|
|
|
-
|
|
|
-export const refund = (orderId, afterSalesId) => {
|
|
|
- return request({
|
|
|
- url: '/api/finance/aftersales/refund',
|
|
|
- method: 'post',
|
|
|
params: {
|
|
|
orderId,
|
|
|
afterSalesId
|