Showing
1 changed file
with
1 additions
and
1 deletions
| @@ -75,7 +75,7 @@ export struct Card4Component { | @@ -75,7 +75,7 @@ export struct Card4Component { | ||
| 75 | ForEach(this.contentDTO.fullColumnImgUrls, (item: FullColumnImgUrlDTO, index: number) => { | 75 | ForEach(this.contentDTO.fullColumnImgUrls, (item: FullColumnImgUrlDTO, index: number) => { |
| 76 | if (index < 3) { | 76 | if (index < 3) { |
| 77 | GridCol({ span: { xs: 4 } }) { | 77 | GridCol({ span: { xs: 4 } }) { |
| 78 | - Image(this.loadImg ? item.url : '') | 78 | + Image(this.loadImg ? item.url || item.fullUrl : '') |
| 79 | .backgroundColor(0xf5f5f5) | 79 | .backgroundColor(0xf5f5f5) |
| 80 | .width('100%') | 80 | .width('100%') |
| 81 | .aspectRatio(113 / 75) | 81 | .aspectRatio(113 / 75) |
-
Please register or login to post a comment