51 lines
898 B
51 lines
898 B
1 year ago
|
import request from '@/axios';
|
||
|
|
||
|
export const getList = (current, size, params) => {
|
||
|
return request({
|
||
|
url: '/api/logpm-aftersales/aftersalesExchange/list',
|
||
|
method: 'get',
|
||
|
params: {
|
||
|
...params,
|
||
|
current,
|
||
|
size,
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export const getDetail = (id) => {
|
||
|
return request({
|
||
|
url: '/api/logpm-aftersales/aftersalesExchange/detail',
|
||
|
method: 'get',
|
||
|
params: {
|
||
|
id
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export const remove = (ids) => {
|
||
|
return request({
|
||
|
url: '/api/logpm-aftersales/aftersalesExchange/remove',
|
||
|
method: 'post',
|
||
|
params: {
|
||
|
ids,
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export const add = (row) => {
|
||
|
return request({
|
||
|
url: '/api/logpm-aftersales/aftersalesExchange/submit',
|
||
|
method: 'post',
|
||
|
data: row
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export const update = (row) => {
|
||
|
return request({
|
||
|
url: '/api/logpm-aftersales/aftersalesExchange/submit',
|
||
|
method: 'post',
|
||
|
data: row
|
||
|
})
|
||
|
}
|
||
|
|