From 94092d2307846cf990d9cbb08b743b2f10c2300c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=98=E6=B5=A9=E7=A8=8B?= <798994511@qq.com> Date: Fri, 9 May 2025 14:31:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/hot/src/main/ets/view/FoundView.ets | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/features/hot/src/main/ets/view/FoundView.ets b/features/hot/src/main/ets/view/FoundView.ets index 4ad606e..b69991c 100644 --- a/features/hot/src/main/ets/view/FoundView.ets +++ b/features/hot/src/main/ets/view/FoundView.ets @@ -99,9 +99,9 @@ export struct FoundView { .height($r('app.float.blank_height')) .visibility(this.currentBreakpoint === Breakpoint.BREAKPOINT_LG ? Visibility.Hidden : Visibility.Visible) - // [Start pc] + // [Start foundView] WaterFlow() { - // [StartExclude pc] + // [StartExclude foundView] ForEach(this.cardArrayViewModel.cardArray, (item: CardItem, index: number) => { FlowItem() { Column() { @@ -139,11 +139,11 @@ export struct FoundView { $r('app.float.water_flow_margin') : $r('app.float.zero')) } }, (item: CardItem, index: number) => index + JSON.stringify(item)) - // [EndExclude pc] + // [EndExclude foundView] } .columnsTemplate(this.currentBreakpoint !== Breakpoint.BREAKPOINT_LG ? Common.WATER_FLOW_COLUMNS_TEMPLATE_NORMAL : Common.WATER_FLOW_COLUMNS_TEMPLATE_LG) - // [End pc] + // [End foundView] .backgroundColor(this.currentBreakpoint === Breakpoint.BREAKPOINT_LG ? $r('app.color.water_flow_bgc_lg') : $r('app.color.water_flow_bgc')) .linearGradient({ -- Gitee