Showing
1 changed file
with
5 additions
and
3 deletions
| @@ -74,8 +74,8 @@ export struct PeopleShipRecommendComponent { | @@ -74,8 +74,8 @@ export struct PeopleShipRecommendComponent { | ||
| 74 | } | 74 | } |
| 75 | .columnsTemplate('1fr 1fr 1fr') | 75 | .columnsTemplate('1fr 1fr 1fr') |
| 76 | .columnsGap(20) | 76 | .columnsGap(20) |
| 77 | - .rowsGap(20) | ||
| 78 | - .height(Math.ceil(this.rmhList.length / 3.0) * 136) | 77 | + .rowsGap(16) |
| 78 | + .height(Math.ceil(this.rmhList.length / 3.0) * 132) | ||
| 79 | .backgroundColor(Color.Transparent) | 79 | .backgroundColor(Color.Transparent) |
| 80 | .margin({ | 80 | .margin({ |
| 81 | right: '20vp', | 81 | right: '20vp', |
| @@ -85,7 +85,7 @@ export struct PeopleShipRecommendComponent { | @@ -85,7 +85,7 @@ export struct PeopleShipRecommendComponent { | ||
| 85 | // 为你推荐 | 85 | // 为你推荐 |
| 86 | Button(this.rmhSelectedList.length == 0 ? '一键关注' : `一键关注 (${this.rmhSelectedList.length})`, { type: ButtonType.Normal, stateEffect: this.rmhSelectedList.length != 0 }) | 86 | Button(this.rmhSelectedList.length == 0 ? '一键关注' : `一键关注 (${this.rmhSelectedList.length})`, { type: ButtonType.Normal, stateEffect: this.rmhSelectedList.length != 0 }) |
| 87 | .margin({ | 87 | .margin({ |
| 88 | - top: '24vp', | 88 | + top: '10vp', |
| 89 | bottom: '10vp' | 89 | bottom: '10vp' |
| 90 | }) | 90 | }) |
| 91 | .width('120vp') | 91 | .width('120vp') |
| @@ -104,6 +104,8 @@ export struct PeopleShipRecommendComponent { | @@ -104,6 +104,8 @@ export struct PeopleShipRecommendComponent { | ||
| 104 | }) | 104 | }) |
| 105 | } | 105 | } |
| 106 | .width('100%') | 106 | .width('100%') |
| 107 | + .justifyContent(FlexAlign.Start) | ||
| 108 | + | ||
| 107 | } | 109 | } |
| 108 | 110 | ||
| 109 | // 选中 | 111 | // 选中 |
-
Please register or login to post a comment