陈剑华

Merge remote-tracking branch 'origin/main'

... ... @@ -77,7 +77,7 @@ export struct CompParser {
this.componentBuilder();
}
.margin({
left: 6,
left: this.compDTO.compStyle === CompStyle.Zh_Single_Row_04 ? 0 : 6,
right: (this.compDTO.compStyle === CompStyle.Zh_Single_Row_05 || this.compDTO.compStyle === CompStyle.Zh_Single_Row_02 ||
this.compDTO.compStyle === CompStyle.Zh_Single_Row_04) ? 0 : 6
})
... ...
... ... @@ -60,7 +60,8 @@ export struct ZhSingleRow04 {
.margin({ bottom: 8 })
.width('100%')
.padding({
right: 10
left: 16,
right: 16
})
// 列表内容
... ... @@ -74,7 +75,7 @@ export struct ZhSingleRow04 {
)
.margin({
right: index === this.compDTO.operDataList.length - 1 ? 26 : 0,
left: index === 0 ? 2 : 0,
left: index === 0 ? 16 : 0,
top: 6
})
.onClick(() => {
... ... @@ -92,7 +93,7 @@ export struct ZhSingleRow04 {
}
.width(CommonConstants.FULL_WIDTH)
.padding({
left: 10,
left: 0,
right: 0,
top: $r('app.float.card_comp_pagePadding_tb'),
bottom: $r('app.float.card_comp_pagePadding_tb')
... ...