// 鸿蒙小程序示例代码 @Component struct ProductList { @State products: Array<Product> = [] build() { List({ space: 10 }) { ForEach(this.products, (item: Product) => { ListItem() { ProductItem({ product: item }) } }) } .onClick(() => { // 处理商品点击事件 }) } }
提交