Files

37 lines
798 B
JavaScript
Raw Normal View History

2022-09-27 13:32:46 +08:00
import request from '@/utils/request'
// 获取订单列表
export function casDealLogList(params) {
return request({
url: `/business/casDealLog/list`,
method: "get",
params
});
}
2022-10-01 09:11:23 +08:00
// 获取发票列表
export function billList(params) {
return request({
url: `/business/casDealLog/billList`,
method: "get",
params
});
}
2022-09-27 13:32:46 +08:00
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
});
}