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
wangliang_wd
2024-10-28 17:47:35 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
54e5c40b6aac58888032b2711d6fc2f58d275409
54e5c40b
1 parent
40e4bfd0
feat:优化频道视频点击提示内容不存在问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
sight_harmony/features/wdComponent/src/main/ets/model/MinePageDatasModel.ets
sight_harmony/features/wdComponent/src/main/ets/model/MinePageDatasModel.ets
View file @
54e5c40
...
...
@@ -749,7 +749,13 @@ class MinePageDatasModel{
}
fetchAssertDetailData(relId:string,contentId:string,relType:string) {
let url = HttpUrlUtils.getHost() + HttpUrlUtils.DETAIL_PATH + `?relId=${relId}&contentId=${contentId}&relType=${relType}`
let url = ''
if (relId != undefined && relType != undefined) {
url = HttpUrlUtils.getHost() + HttpUrlUtils.DETAIL_PATH + `?relId=${relId}&contentId=${contentId}&relType=${relType}`
}else {
url = HttpUrlUtils.getHost() + HttpUrlUtils.DETAIL_PATH + `?contentId=${contentId}`
}
return WDHttp.get<ResponseDTO<String>>(url)
};
...
...
Please
register
or
login
to post a comment