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-10-12 09:38:33 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fbada58baf5082092c643a2b58e0840c8ddb6ef7
fbada58b
1 parent
48ac8e5e
feat: 20771 搜索结果的4个tab列表以及我的预约列表、意见反馈列表,左右两侧边距,需要修改为16
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletions
sight_harmony/features/wdComponent/src/main/ets/components/cardview/MoreComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/search/SearchResultContentComponent.ets
sight_harmony/products/phone/src/main/ets/pages/view/VideoChannelPage.ets
sight_harmony/features/wdComponent/src/main/ets/components/cardview/MoreComponent.ets
View file @
fbada58
...
...
@@ -26,6 +26,7 @@ export struct MoreComponent {
ForEach(this.contentDTO.sameContentList, (item: ContentDTO, index: number) => {
if (item.appStyle !== "9") {
CardParser({compDTO:new CompDTO, contentDTO: item })
.padding({left: 10, right: 10})
} else {
Column(){
Card9Component({ compDTO: new CompDTO, contentDTO:item, pageId: "", pageName: "" })
...
...
@@ -35,6 +36,7 @@ export struct MoreComponent {
.color($r('app.color.color_F5F5F5'))
.strokeWidth(4)
}
.padding({left: 10, right: 10})
}
})
...
...
@@ -65,6 +67,7 @@ export struct MoreComponent {
.strokeWidth(5)
}
.padding({left: 10, right: 10})
}
...
...
sight_harmony/features/wdComponent/src/main/ets/components/search/SearchResultContentComponent.ets
View file @
fbada58
...
...
@@ -283,7 +283,7 @@ export struct SearchResultContentComponent {
if (this.data_rmh.length === 1) {
ListItem() {
FollowChildComponent({ data: this.bean, type: 1 ,searchText: decodeURI(this.keywords)})
}.padding({ left:
"31lpx", right: "31lpx"
})
}.padding({ left:
10, right: 10
})
} else {
ListItem() {
Column() {
...
...
@@ -338,6 +338,7 @@ export struct SearchResultContentComponent {
.backgroundColor($r('app.color.white'))
.height('100%')
.width('100%')
.padding({left: 6, right: 6})
}
@Builder
...
...
sight_harmony/products/phone/src/main/ets/pages/view/VideoChannelPage.ets
View file @
fbada58
...
...
@@ -70,6 +70,7 @@ export struct VideoChannelPage {
return Number(this.assignChannel.channelId) == item.channelId && Number(this.assignChannel.pageId) == item.pageId
}) || 0
this.clickTopNav(index)
this.setBarBackgroundColor()
}
/**
...
...
@@ -178,6 +179,7 @@ export struct VideoChannelPage {
}
this.currentTopNavSelectedIndex = index
this.swiperController.changeIndex(index, true)
this.setBarBackgroundColor()
}
@Builder
...
...
Please
register
or
login
to post a comment