From d2de9b3543f1038b45b00b3bf63a1bd7d21a4bf6 Mon Sep 17 00:00:00 2001 From: "1362134550@qq.com" <1362134550@qq.com> Date: Sat, 7 Jun 2025 10:47:30 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/ets/components/ListContent.ets | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/features/musicList/src/main/ets/components/ListContent.ets b/features/musicList/src/main/ets/components/ListContent.ets index 9a5ebc3..708128c 100644 --- a/features/musicList/src/main/ets/components/ListContent.ets +++ b/features/musicList/src/main/ets/components/ListContent.ets @@ -22,7 +22,17 @@ export struct Content { @StorageProp('currentBreakpoint') currentBreakpoint: string = BreakpointConstants.BREAKPOINT_SM; build() { - GridRow() { + GridRow({ + breakpoints: { + value: BreakpointConstants.BREAKPOINT_VALUE, + reference: BreakpointsReference.WindowSize + }, + columns: { + sm: BreakpointConstants.COLUMN_LG, + md: BreakpointConstants.COLUMN_LG, + lg: BreakpointConstants.COLUMN_LG + } + }) { GridCol({ span: { sm: GridConstants.SPAN_TWELVE, md: GridConstants.SPAN_SIX, lg: GridConstants.SPAN_FOUR } }) { AlbumCover({ currentBreakpoint: this.currentBreakpoint }) } -- Gitee