Showing
1 changed file
with
4 additions
and
3 deletions
| @@ -27,6 +27,7 @@ export struct Card17Component { | @@ -27,6 +27,7 @@ export struct Card17Component { | ||
| 27 | @State str03: string = ''; | 27 | @State str03: string = ''; |
| 28 | 28 | ||
| 29 | async aboutToAppear(): Promise<void> { | 29 | async aboutToAppear(): Promise<void> { |
| 30 | + console.log('Card17Component', JSON.stringify(this.contentDTO)) | ||
| 30 | this.titleInit(); | 31 | this.titleInit(); |
| 31 | this.clicked = hasClicked(this.contentDTO.objectId) | 32 | this.clicked = hasClicked(this.contentDTO.objectId) |
| 32 | this.loadImg = await onlyWifiLoadImg(); | 33 | this.loadImg = await onlyWifiLoadImg(); |
| @@ -65,7 +66,7 @@ export struct Card17Component { | @@ -65,7 +66,7 @@ export struct Card17Component { | ||
| 65 | GridRow({ gutter: 2 }) { | 66 | GridRow({ gutter: 2 }) { |
| 66 | GridCol({ span: { xs: 8 } }) { | 67 | GridCol({ span: { xs: 8 } }) { |
| 67 | Image(this.loadImg ? | 68 | Image(this.loadImg ? |
| 68 | - this.contentDTO.fullColumnImgUrls.length > 0 ? this.contentDTO.fullColumnImgUrls[0].url : '' : '') | 69 | + this.contentDTO.fullColumnImgUrls.length > 0 ? this.contentDTO.fullColumnImgUrls[0].url || this.contentDTO.fullColumnImgUrls[0].fullUrl : '' : '') |
| 69 | .backgroundColor(this.loadImg ? '#f5f5f5' : 0xf5f5f5) | 70 | .backgroundColor(this.loadImg ? '#f5f5f5' : 0xf5f5f5) |
| 70 | .width(CommonConstants.FULL_WIDTH) | 71 | .width(CommonConstants.FULL_WIDTH) |
| 71 | .height(160)// .aspectRatio(CompUtils.ASPECT_RATIO_16_9) | 72 | .height(160)// .aspectRatio(CompUtils.ASPECT_RATIO_16_9) |
| @@ -77,7 +78,7 @@ export struct Card17Component { | @@ -77,7 +78,7 @@ export struct Card17Component { | ||
| 77 | 78 | ||
| 78 | GridCol({ span: { xs: 4 } }) { | 79 | GridCol({ span: { xs: 4 } }) { |
| 79 | Image(this.loadImg ? | 80 | Image(this.loadImg ? |
| 80 | - this.contentDTO.fullColumnImgUrls.length > 1 ? this.contentDTO.fullColumnImgUrls[1].url : '' : '') | 81 | + this.contentDTO.fullColumnImgUrls.length > 1 ? this.contentDTO.fullColumnImgUrls[1].url || this.contentDTO.fullColumnImgUrls[1].fullUrl : '' : '') |
| 81 | .backgroundColor(this.loadImg ? '#f5f5f5' : 0xf5f5f5) | 82 | .backgroundColor(this.loadImg ? '#f5f5f5' : 0xf5f5f5) |
| 82 | .width(CommonConstants.FULL_WIDTH) | 83 | .width(CommonConstants.FULL_WIDTH) |
| 83 | .height(79)// .aspectRatio(CompUtils.ASPECT_RATIO_16_9) | 84 | .height(79)// .aspectRatio(CompUtils.ASPECT_RATIO_16_9) |
| @@ -94,7 +95,7 @@ export struct Card17Component { | @@ -94,7 +95,7 @@ export struct Card17Component { | ||
| 94 | 95 | ||
| 95 | GridCol({ span: { xs: 4 } }) { | 96 | GridCol({ span: { xs: 4 } }) { |
| 96 | Image(this.loadImg ? | 97 | Image(this.loadImg ? |
| 97 | - this.contentDTO.fullColumnImgUrls.length > 2 ? this.contentDTO.fullColumnImgUrls[2].url : '' : '') | 98 | + this.contentDTO.fullColumnImgUrls.length > 2 ? this.contentDTO.fullColumnImgUrls[2].url || this.contentDTO.fullColumnImgUrls[2].fullUrl : '' : '') |
| 98 | .backgroundColor(this.loadImg ? '#f5f5f5' : 0xf5f5f5) | 99 | .backgroundColor(this.loadImg ? '#f5f5f5' : 0xf5f5f5) |
| 99 | .width(CommonConstants.FULL_WIDTH) | 100 | .width(CommonConstants.FULL_WIDTH) |
| 100 | .height(79)// .aspectRatio(CompUtils.ASPECT_RATIO_16_9) | 101 | .height(79)// .aspectRatio(CompUtils.ASPECT_RATIO_16_9) |
-
Please register or login to post a comment