陈剑华

feat: 20771 搜索结果的4个tab列表以及我的预约列表、意见反馈列表,左右两侧边距,需要修改为16

... ... @@ -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})
}
... ...
... ... @@ -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
... ...
... ... @@ -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
... ...