bug fixed

This commit is contained in:
cxc
2022-09-27 13:32:46 +08:00
parent ab0b5f9011
commit 5592d9f40c
6 changed files with 428 additions and 8 deletions

29
src/api/order/index.js Normal file
View 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
});
}