Merge branch 'main' of http://192.168.1.42/developOne/harmonyPool
Showing
3 changed files
with
7 additions
and
7 deletions
| @@ -152,7 +152,7 @@ export struct CompParser { | @@ -152,7 +152,7 @@ export struct CompParser { | ||
| 152 | } else if (this.compDTO.compStyle === CompStyle.Zh_Grid_Layout_02) { //双列流小视频,一行两图卡 ->标题 | 152 | } else if (this.compDTO.compStyle === CompStyle.Zh_Grid_Layout_02) { //双列流小视频,一行两图卡 ->标题 |
| 153 | //ZhGridLayout02({ compDTO: this.compDTO }) | 153 | //ZhGridLayout02({ compDTO: this.compDTO }) |
| 154 | CompNormalTitle({ compDTO: this.compDTO }) | 154 | CompNormalTitle({ compDTO: this.compDTO }) |
| 155 | - this.getBehindDivider() | 155 | + // this.getBehindDivider() |
| 156 | } else if (this.compDTO.compStyle === CompStyle.Card_Comp_Zh_Grid_Layout_02) { //双列流小视频,一行两图卡 | 156 | } else if (this.compDTO.compStyle === CompStyle.Card_Comp_Zh_Grid_Layout_02) { //双列流小视频,一行两图卡 |
| 157 | 157 | ||
| 158 | ZhGridLayout02NewsContent({ | 158 | ZhGridLayout02NewsContent({ |
| @@ -161,7 +161,7 @@ export struct CompParser { | @@ -161,7 +161,7 @@ export struct CompParser { | ||
| 161 | pageId: this.pageId, | 161 | pageId: this.pageId, |
| 162 | pageName: this.pageName | 162 | pageName: this.pageName |
| 163 | }) | 163 | }) |
| 164 | - this.getBehindDivider() | 164 | + // this.getBehindDivider() |
| 165 | 165 | ||
| 166 | } else if (this.compDTO.compStyle === CompStyle.Zh_Grid_Layout_03) { | 166 | } else if (this.compDTO.compStyle === CompStyle.Zh_Grid_Layout_03) { |
| 167 | ZhGridLayout03({ compDTO: this.compDTO, pageId: this.pageId, pageName: this.pageName }) | 167 | ZhGridLayout03({ compDTO: this.compDTO, pageId: this.pageId, pageName: this.pageName }) |
| @@ -260,7 +260,7 @@ export struct PeopleShipMainComponent { | @@ -260,7 +260,7 @@ export struct PeopleShipMainComponent { | ||
| 260 | ListItem() { | 260 | ListItem() { |
| 261 | Column(){ | 261 | Column(){ |
| 262 | CardParser({ compDTO: new CompDTO, contentDTO: item }) | 262 | CardParser({ compDTO: new CompDTO, contentDTO: item }) |
| 263 | - Divider().strokeWidth(1).color('#f5f5f5').padding({ left: 16, right: 16 }) | 263 | + // Divider().strokeWidth(1).color('#f5f5f5').padding({ left: 16, right: 16 }) |
| 264 | }.width('100%') | 264 | }.width('100%') |
| 265 | 265 | ||
| 266 | }.width("100%") | 266 | }.width("100%") |
| @@ -101,7 +101,7 @@ export struct PeopleShipHomeArticleListComponent { | @@ -101,7 +101,7 @@ export struct PeopleShipHomeArticleListComponent { | ||
| 101 | Column() { | 101 | Column() { |
| 102 | CardParser({compDTO:new CompDTO, contentDTO: item , isPeopleShipHome:true}) | 102 | CardParser({compDTO:new CompDTO, contentDTO: item , isPeopleShipHome:true}) |
| 103 | .margin({left: 6, right: 6}) | 103 | .margin({left: 6, right: 6}) |
| 104 | - Divider().strokeWidth(1).color('#f5f5f5').padding({ left: 16, right: 16 }) | 104 | + // Divider().strokeWidth(1).color('#f5f5f5').padding({ left: 16, right: 16 }) |
| 105 | } | 105 | } |
| 106 | }.width("100%") | 106 | }.width("100%") |
| 107 | .backgroundColor(Color.Transparent) | 107 | .backgroundColor(Color.Transparent) |
| @@ -300,14 +300,14 @@ export struct PeopleShipHomeArticleListComponent { | @@ -300,14 +300,14 @@ export struct PeopleShipHomeArticleListComponent { | ||
| 300 | } | 300 | } |
| 301 | // contentDTO.shareInfo = [self.contentShare.firstObject convertToShareInfo]; | 301 | // contentDTO.shareInfo = [self.contentShare.firstObject convertToShareInfo]; |
| 302 | // contentDTO.shareInfo.shareUrl = self.shareUrl; | 302 | // contentDTO.shareInfo.shareUrl = self.shareUrl; |
| 303 | - if (element.updateTime.length > 0) { | ||
| 304 | - contentDTO.publishTime = this.convertPublishTimeWith(element.updateTime); | ||
| 305 | - }else if (element.publishTime.length > 0) { | 303 | + if (element.publishTime.length > 0) { |
| 306 | contentDTO.publishTime = this.convertPublishTimeWith(element.publishTime); | 304 | contentDTO.publishTime = this.convertPublishTimeWith(element.publishTime); |
| 307 | } else if (element.firstPublishTime.length > 0) { | 305 | } else if (element.firstPublishTime.length > 0) { |
| 308 | contentDTO.publishTime = this.convertPublishTimeWith(element.firstPublishTime); | 306 | contentDTO.publishTime = this.convertPublishTimeWith(element.firstPublishTime); |
| 309 | } else if (element.createTime.length > 0) { | 307 | } else if (element.createTime.length > 0) { |
| 310 | contentDTO.publishTime = this.convertPublishTimeWith(element.createTime); | 308 | contentDTO.publishTime = this.convertPublishTimeWith(element.createTime); |
| 309 | + } else if (element.updateTime.length > 0) { | ||
| 310 | + contentDTO.publishTime = this.convertPublishTimeWith(element.updateTime); | ||
| 311 | } | 311 | } |
| 312 | 312 | ||
| 313 | //图集数量 | 313 | //图集数量 |
-
Please register or login to post a comment