Showing
2 changed files
with
3 additions
and
2 deletions
| @@ -56,7 +56,7 @@ export struct Card5Component { | @@ -56,7 +56,7 @@ export struct Card5Component { | ||
| 56 | ) | 56 | ) |
| 57 | .height(this.loadImg ? '' : 114) | 57 | .height(this.loadImg ? '' : 114) |
| 58 | .autoResize(true) | 58 | .autoResize(true) |
| 59 | - if (!!this.titleShowPolicy || this.titleShowPolicy === null ) { | 59 | + if (!!this.titleShowPolicy || this.titleShowPolicy === null || this.titleShowPolicy == '' ) { |
| 60 | Row() | 60 | Row() |
| 61 | .borderRadius( | 61 | .borderRadius( |
| 62 | { | 62 | { |
| @@ -90,7 +90,7 @@ export struct SearchResultContentComponent { | @@ -90,7 +90,7 @@ export struct SearchResultContentComponent { | ||
| 90 | if (this.hasMore) { | 90 | if (this.hasMore) { |
| 91 | SearcherAboutDataModel.getSearchResultListData("20", `${this.curPageNum}`, this.searchType, this.keywords, | 91 | SearcherAboutDataModel.getSearchResultListData("20", `${this.curPageNum}`, this.searchType, this.keywords, |
| 92 | getContext(this)).then((value) => { | 92 | getContext(this)).then((value) => { |
| 93 | - console.log('SearcherAboutDataModel', JSON.stringify(value)) | 93 | + console.log('SearcherAboutDataModel111', JSON.stringify(value)) |
| 94 | if (!this.data || value.list.length == 0) { | 94 | if (!this.data || value.list.length == 0) { |
| 95 | this.hasMore = false | 95 | this.hasMore = false |
| 96 | this.isLoading = false | 96 | this.isLoading = false |
| @@ -505,6 +505,7 @@ export struct SearchResultContentComponent { | @@ -505,6 +505,7 @@ export struct SearchResultContentComponent { | ||
| 505 | contentDTO.source = StringUtils.isEmpty(value.data.creatorName) ? value.data.sourceName : value.data.creatorName | 505 | contentDTO.source = StringUtils.isEmpty(value.data.creatorName) ? value.data.sourceName : value.data.creatorName |
| 506 | contentDTO.objectId = value.data.id | 506 | contentDTO.objectId = value.data.id |
| 507 | contentDTO.objectType = value.data.type | 507 | contentDTO.objectType = value.data.type |
| 508 | + contentDTO.objectLevel = value.data.topicType | ||
| 508 | contentDTO.channelId = value.data.channelId | 509 | contentDTO.channelId = value.data.channelId |
| 509 | contentDTO.relId = value.data.relId | 510 | contentDTO.relId = value.data.relId |
| 510 | contentDTO.relType = value.data.relType | 511 | contentDTO.relType = value.data.relType |
-
Please register or login to post a comment