This commit is contained in:
2024-05-06 00:44:03 +08:00
commit b67da75dc2
1268 changed files with 136802 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询订单列表
export function listAgentOrder(query) {
return request({
url: '/ct/agentOrder/list',
method: 'get',
params: query
})
}
// 查询订单详细
export function getAgentOrder(id) {
return request({
url: '/ct/agentOrder/' + id,
method: 'get'
})
}
// 新增订单
export function addAgentOrder(data) {
return request({
url: '/ct/agentOrder',
method: 'post',
data: data
})
}
// 修改订单
export function updateAgentOrder(data) {
return request({
url: '/ct/agentOrder',
method: 'put',
data: data
})
}
// 删除订单
export function delAgentOrder(id) {
return request({
url: '/ct/agentOrder/' + id,
method: 'delete'
})
}