diff --git a/app/api/goods/index.js b/app/api/goods/index.js index 7f9adea..d206a48 100644 --- a/app/api/goods/index.js +++ b/app/api/goods/index.js @@ -13,4 +13,11 @@ export async function defaultDetail(data) { method: 'POST', body: data, }) +} +export async function artworkDetail(data) { + const http = getHttp() + return await http('/api/v1/m/artwork/detail', { + method: 'POST', + body: data, + }) } \ No newline at end of file diff --git a/app/pages/home/components/ItemList/index.vue b/app/pages/home/components/ItemList/index.vue index 8179bed..5f413a1 100644 --- a/app/pages/home/components/ItemList/index.vue +++ b/app/pages/home/components/ItemList/index.vue @@ -1,7 +1,7 @@