2025-01-17 08:56:13 +00:00
|
|
|
import { getHttp } from '~/api/http.js'
|
|
|
|
|
|
|
|
export async function artworkList(data) {
|
|
|
|
const http = getHttp()
|
|
|
|
return await http('/api/v1/m/auction/default/artwork/list', {
|
|
|
|
method: 'POST',
|
|
|
|
body: data,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
export async function defaultDetail(data) {
|
|
|
|
const http = getHttp()
|
|
|
|
return await http('/api/v1/m/auction/default/detail', {
|
|
|
|
method: 'POST',
|
|
|
|
body: data,
|
|
|
|
})
|
2025-01-20 08:57:22 +00:00
|
|
|
}
|
|
|
|
export async function artworkDetail(data) {
|
|
|
|
const http = getHttp()
|
|
|
|
return await http('/api/v1/m/artwork/detail', {
|
|
|
|
method: 'POST',
|
|
|
|
body: data,
|
|
|
|
})
|
2025-01-17 08:56:13 +00:00
|
|
|
}
|