27 lines
854 B
TypeScript
27 lines
854 B
TypeScript
|
import request from '@/utils/request'
|
||
|
|
||
|
// 预订单表列表
|
||
|
export function apiBeforehandOrderLists(params: any) {
|
||
|
return request.get({ url: '/beforehand_order/beforehandorder/lists', params })
|
||
|
}
|
||
|
|
||
|
// 添加预订单表
|
||
|
export function apiBeforehandOrderAdd(params: any) {
|
||
|
return request.post({ url: '/beforehand_order/beforehandorder/add', params })
|
||
|
}
|
||
|
|
||
|
// 编辑预订单表
|
||
|
export function apiBeforehandOrderEdit(params: any) {
|
||
|
return request.post({ url: '/beforehand_order/beforehandorder/edit', params })
|
||
|
}
|
||
|
|
||
|
// 删除预订单表
|
||
|
export function apiBeforehandOrderDelete(params: any) {
|
||
|
return request.post({ url: '/beforehand_order/beforehandorder/delete', params })
|
||
|
}
|
||
|
|
||
|
// 预订单表详情
|
||
|
export function apiBeforehandOrderDetail(params: any) {
|
||
|
return request.get({ url: '/beforehand_order/beforehandorder/detail', params })
|
||
|
}
|