From 0c3f5f7379ce48e6b948990331be11917aa75fb3 Mon Sep 17 00:00:00 2001 From: xingyy <64720302+Concur-max@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:53:43 +0800 Subject: [PATCH] =?UTF-8?q?feat(home):=20=E6=B7=BB=E5=8A=A0=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E8=89=BA=E6=9C=AF=E5=93=81=E5=88=97=E8=A1=A8=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=B9=B6=E4=BC=98=E5=8C=96=E7=9B=B4=E6=92=AD=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -引入 getArtworkList 方法,用于获取艺术品列表 - 在 changeLive 方法中添加获取艺术品列表的调用 - 移除未使用的 showMinWindow1 导入 --- app/pages/home/index.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/pages/home/index.vue b/app/pages/home/index.vue index a2d8301..a623f80 100644 --- a/app/pages/home/index.vue +++ b/app/pages/home/index.vue @@ -5,13 +5,12 @@ import ItemList from './components/ItemList/index.vue' import Cescribe from './components/Cescribe/index.vue' import {message} from '@/components/x-message/useMessage.js' import {liveStore} from "~/stores/live/index.js"; -import { showMinWindow1} from "~/components/floatingBubble/floating.js"; - -const {getAuctionDetail, auctionDetail} = goodStore(); +const {getAuctionDetail, auctionDetail,getArtworkList} = goodStore(); const {fullLive} = liveStore() const changeLive = () => { if (auctionDetail.value.isLiving===1){ fullLive.value = true; + getArtworkList(true) } }