Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
chenquansheng
2024-08-20 16:04:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8e3cede9720cb3448589c4d57faf3cecc48c71ee
8e3cede9
1 parent
2ff7af5a
fix |> 话题专题列表页、详情页,标签文字写死为【调查】
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
sight_harmony/features/wdComponent/src/main/ets/components/cardview/Card5Component.ets
sight_harmony/features/wdComponent/src/main/ets/components/search/SearchResultContentComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/cardview/Card5Component.ets
View file @
8e3cede
...
...
@@ -56,7 +56,7 @@ export struct Card5Component {
)
.height(this.loadImg ? '' : 114)
.autoResize(true)
if (!!this.titleShowPolicy || this.titleShowPolicy === null ) {
if (!!this.titleShowPolicy || this.titleShowPolicy === null
|| this.titleShowPolicy == ''
) {
Row()
.borderRadius(
{
...
...
sight_harmony/features/wdComponent/src/main/ets/components/search/SearchResultContentComponent.ets
View file @
8e3cede
...
...
@@ -90,7 +90,7 @@ export struct SearchResultContentComponent {
if (this.hasMore) {
SearcherAboutDataModel.getSearchResultListData("20", `${this.curPageNum}`, this.searchType, this.keywords,
getContext(this)).then((value) => {
console.log('SearcherAboutDataModel', JSON.stringify(value))
console.log('SearcherAboutDataModel
111
', JSON.stringify(value))
if (!this.data || value.list.length == 0) {
this.hasMore = false
this.isLoading = false
...
...
@@ -505,6 +505,7 @@ export struct SearchResultContentComponent {
contentDTO.source = StringUtils.isEmpty(value.data.creatorName) ? value.data.sourceName : value.data.creatorName
contentDTO.objectId = value.data.id
contentDTO.objectType = value.data.type
contentDTO.objectLevel = value.data.topicType
contentDTO.channelId = value.data.channelId
contentDTO.relId = value.data.relId
contentDTO.relType = value.data.relType
...
...
Please
register
or
login
to post a comment