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-31 10:29:14 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3b1c2ec2c322fb11e00a63d8f6f1db20d651b12a
3b1c2ec2
1 parent
f6f0428f
feat:优化短视频滑动接口刷新逻辑,优化搜索界面滑动编辑框不消失问题
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
sight_harmony/features/wdComponent/src/main/ets/components/search/SearchComponent.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/pages/DetailVideoListPage.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerProgressView.ets
sight_harmony/features/wdComponent/src/main/ets/components/search/SearchComponent.ets
View file @
3b1c2ec
...
...
@@ -179,6 +179,9 @@ export struct SearchComponent {
.width('100%')
.height('100%')
.padding({ left: 16, right: 16 })
.onScrollStart(()=>{
this.controller.stopEditing()
})
} else {
if (this.hasChooseSearch) {
//搜索结果
...
...
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/pages/DetailVideoListPage.ets
View file @
3b1c2ec
...
...
@@ -475,7 +475,7 @@ export struct DetailVideoListPage {
if (!this.peopleShipHomeCreatorId) {
this.queryVideoList()
} else {
this.getRmhPublishNexts(this.peopleShipHomeCreatorId, `${this.data[this.
currentIndex
].newsId}`, 1, 1, 10, systemDateTime.getTime(false));
this.getRmhPublishNexts(this.peopleShipHomeCreatorId, `${this.data[this.
data.length-1
].newsId}`, 1, 1, 10, systemDateTime.getTime(false));
}
// this.getRmhPublishNexts(this.peopleShipHomeCreatorId, this.contentId, 1, 1, 10, systemDateTime.getTime(false));
}
...
...
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerProgressView.ets
View file @
3b1c2ec
...
...
@@ -29,13 +29,13 @@ export struct PlayerProgressView {
if (this.onlyWifiLoadVideo) {
this.showLoading = true
}
this.timer = setTimeout(() => {
ToastUtils.shortToast('网络出小差了,请检查下网络')
}, 10000)
// this.timer = setTimeout(() => {
// ToastUtils.shortToast('网络出小差了,请检查下网络')
// }, 10000)
// console.log("PlayerProgressView11", this.timer)
} else {
// console.log("PlayerProgressView22", this.timer)
clearTimeout(this.timer)
//
clearTimeout(this.timer)
this.loadingWidth = 1
this.showLoading = false
}
...
...
Please
register
or
login
to post a comment