EnGridLayout03.ets 510 Bytes
import { ContentDTO } from 'wdBean';

/**
 * 精选评论卡
 * En_Grid_Layout-03
 */
const TAG = 'En_Grid_Layout_03'
@Entry
@Component
struct EnGridLayout03 {
  @State item: ContentDTO | undefined = {} as ContentDTO

  build() {
    Row(){
      // Image(this.item?.previewCoverUrl)
      Column(){
        // Text(this.item?.title)
        //   .fontColor(Color.Black)
        //   .fontWeight(600)
      }
      .backgroundColor('rgba(128, 128, 128, 0.58)')
      .padding(5)
      .height(400)
    }
  }
}