From 4b75b9fc3fdf9fc29c9d6360f02a285bd0ef7717 Mon Sep 17 00:00:00 2001 From: Xiang Chengjun Date: Thu, 13 Jun 2024 16:11:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/modules/panel/wrap/components/photoList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modules/panel/wrap/components/photoList.vue b/src/components/modules/panel/wrap/components/photoList.vue index e374109..342319b 100644 --- a/src/components/modules/panel/wrap/components/photoList.vue +++ b/src/components/modules/panel/wrap/components/photoList.vue @@ -101,7 +101,7 @@ watch( state.list.length = 0 return } - let list = newList.filter((v: IGetTempListData) => !newList.includes(v) || !oldList.includes(v)) // difference + let list = newList.filter((v: IGetTempListData) => !oldList.includes(v)) // difference list = JSON.parse(JSON.stringify(list)) const marginRight = 6 // 间距 const limitWidth = (await getFatherWidth()) - marginRight