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
王士厅
2024-06-07 17:46:21 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c2dcfec3ad67e491bdf0c1dd83aef34602a8c7c9
c2dcfec3
1 parent
bb2a1a3e
UI还原问题-【uat】进入号主页》视频,进入视频详情页,点击取消收藏按钮,返回,再进入,收藏按钮还是选中状态,预期不选中
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
sight_harmony/features/wdDetailPlayApi/src/main/ets/request/ContentDetailRequest.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerRightView.ets
sight_harmony/features/wdDetailPlayApi/src/main/ets/request/ContentDetailRequest.ets
View file @
c2dcfec
...
...
@@ -127,7 +127,7 @@ export interface postExecuteLikeParams {
title?: string;
contentRelId?: string;
userHeaderUrl?: string;
channelId?: string;
channelId?: string
| number
;
}
export interface postExecuteCollectRecordParamsItem {
...
...
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerRightView.ets
View file @
c2dcfec
...
...
@@ -75,13 +75,13 @@ export struct PlayerRightView {
return
}
const params: postExecuteLikeParams = {
status: this.newsStatusOfUser?.likeStatus ==
=
'1' ? 0 : 1,
status: this.newsStatusOfUser?.likeStatus == '1' ? 0 : 1,
contentId: this.contentDetailData?.newsId + '',
contentType: this.contentDetailData?.newsType + '',
userName: this.contentDetailData?.userInfo?.userName || '' + '',
contentRelId: this.contentDetailData?.reLInfo?.relId || '' + '',
title: this.contentDetailData?.newsTitle || '' + '',
channelId: this.contentDetailData?.reLInfo?.channelId + '',
channelId: this.contentDetailData?.reLInfo?.channelId
|| ''
+ '',
relType: this.contentDetailData?.reLInfo?.relType || '' + '',
userHeaderUrl: this.contentDetailData?.userInfo?.headPhotoUrl || '' + '',
}
...
...
Please
register
or
login
to post a comment