bug fixed
This commit is contained in:
29
src/api/order/index.js
Normal file
29
src/api/order/index.js
Normal file
@ -0,0 +1,29 @@
|
||||
import request from '@/utils/request'
|
||||
// 获取订单列表
|
||||
export function casDealLogList(params) {
|
||||
return request({
|
||||
url: `/business/casDealLog/list`,
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
}
|
||||
export function addDealLog(data) {
|
||||
return request({
|
||||
url: `/business/casDealLog`,
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
}
|
||||
export function DealLogDetail(id) {
|
||||
return request({
|
||||
url: `/business/casDealLog/${id}`,
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
export function updateDealLog(data) {
|
||||
return request({
|
||||
url: `/business/casDealLog`,
|
||||
method: "put",
|
||||
data
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user