- 将 home store 重命名为 goods store,以更准确地反映其用途 - 更新了相关文件中的导入路径和引用 -调整了首页布局和组件以适应新的 goods store 结构 - 新增了 goods store 中的 actionDetails 和 itemList 属性
16 lines
412 B
JavaScript
16 lines
412 B
JavaScript
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,
|
|
})
|
|
} |