9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
import httpClient from '@/libs/http-client'
|
|
|
|
export function bettingList (params) {
|
|
const url = '/api/bet/betlist'
|
|
return httpClient.post(url, params).then(response => {
|
|
return response
|
|
})
|
|
}
|