Showing
3 changed files
with
8 additions
and
9 deletions
| @@ -68,9 +68,9 @@ export struct Card10Component { | @@ -68,9 +68,9 @@ export struct Card10Component { | ||
| 68 | 68 | ||
| 69 | initHideDetail() { | 69 | initHideDetail() { |
| 70 | const curRouter = router.getState().name; | 70 | const curRouter = router.getState().name; |
| 71 | - if (curRouter === 'MyCollectionListPage') { | ||
| 72 | - this.hideDetail = true; | ||
| 73 | - } | 71 | + // if (curRouter === 'MyCollectionListPage') { |
| 72 | + // this.hideDetail = true; | ||
| 73 | + // } | ||
| 74 | } | 74 | } |
| 75 | 75 | ||
| 76 | titleInit() { | 76 | titleInit() { |
| @@ -154,7 +154,6 @@ export struct Card10Component { | @@ -154,7 +154,6 @@ export struct Card10Component { | ||
| 154 | .height(40) | 154 | .height(40) |
| 155 | .borderRadius($r('app.float.button_border_radius')) | 155 | .borderRadius($r('app.float.button_border_radius')) |
| 156 | .justifyContent(FlexAlign.Center) | 156 | .justifyContent(FlexAlign.Center) |
| 157 | - .margin({ top: 5 }) | ||
| 158 | .onClick((event: ClickEvent) => { | 157 | .onClick((event: ClickEvent) => { |
| 159 | InfomationCardClick.track(this.compDTO, this.contentDTO, this.pageId, this.pageName) | 158 | InfomationCardClick.track(this.compDTO, this.contentDTO, this.pageId, this.pageName) |
| 160 | ProcessUtils.processPage(this.contentDTO) | 159 | ProcessUtils.processPage(this.contentDTO) |
| @@ -35,9 +35,9 @@ export struct Card9Component { | @@ -35,9 +35,9 @@ export struct Card9Component { | ||
| 35 | 35 | ||
| 36 | initHideDetail() { | 36 | initHideDetail() { |
| 37 | const curRouter = router.getState().name; | 37 | const curRouter = router.getState().name; |
| 38 | - if (curRouter === 'MyCollectionListPage') { | ||
| 39 | - this.hideDetail = true; | ||
| 40 | - } | 38 | + // if (curRouter === 'MyCollectionListPage') { |
| 39 | + // this.hideDetail = true; | ||
| 40 | + // } | ||
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | //内容浏览Tracking | 43 | //内容浏览Tracking |
| @@ -475,7 +475,7 @@ export struct SearchResultContentComponent { | @@ -475,7 +475,7 @@ export struct SearchResultContentComponent { | ||
| 475 | contentDTO.coverSize = "" | 475 | contentDTO.coverSize = "" |
| 476 | contentDTO.coverType = value.data.type == "5" ? 1 : -1 | 476 | contentDTO.coverType = value.data.type == "5" ? 1 : -1 |
| 477 | contentDTO.coverUrl = | 477 | contentDTO.coverUrl = |
| 478 | - this.searchType == "activity" ? value.data.zhChannelPageImg : value.data.appStyleImages.split("&&")[0]; | 478 | + this.searchType == "activity" ? value.data.zhChannelPageImg : value.data.appStyleImages.split("&&")[0].split('?')[0]; |
| 479 | contentDTO.description = value.data.description | 479 | contentDTO.description = value.data.description |
| 480 | contentDTO.districtCode = value.data.districtCode | 480 | contentDTO.districtCode = value.data.districtCode |
| 481 | contentDTO.endTime = value.data.endTime | 481 | contentDTO.endTime = value.data.endTime |
| @@ -515,7 +515,7 @@ export struct SearchResultContentComponent { | @@ -515,7 +515,7 @@ export struct SearchResultContentComponent { | ||
| 515 | contentDTO.visitorComment = -1 | 515 | contentDTO.visitorComment = -1 |
| 516 | contentDTO.fullColumnImgUrls = photos | 516 | contentDTO.fullColumnImgUrls = photos |
| 517 | contentDTO.newsSummary = "" | 517 | contentDTO.newsSummary = "" |
| 518 | - contentDTO.hasMore = -1 | 518 | + contentDTO.hasMore = this.hasMore ? 1 : -1 |
| 519 | contentDTO.slideShows = [] | 519 | contentDTO.slideShows = [] |
| 520 | contentDTO.voiceInfo = {} as VoiceInfoDTO | 520 | contentDTO.voiceInfo = {} as VoiceInfoDTO |
| 521 | contentDTO.tagWord = -1 | 521 | contentDTO.tagWord = -1 |
-
Please register or login to post a comment