This commit is contained in:
limqhz
2021-09-21 18:10:13 +08:00
parent c72e50c5e4
commit aa5faaaa2e
318 changed files with 44583 additions and 59 deletions

View File

@@ -0,0 +1,22 @@
import http from '@/utils/http'
/**
* 查询篮球进场订单
*/
export function find(id) {
return http.get('/member/enter/veneu/log/' + id)
}
/**
* 删除篮球进场订单
*/
export function remove(ids) {
return http.post('/member/enter/veneu/log/delete', { 'id[]': ids })
}
/**
* 保存篮球进场订单
*/
export function save(params) {
return http.post('/member/enter/veneu/log', params)
}