Showing
3 changed files
with
6 additions
and
1 deletions
| @@ -78,7 +78,9 @@ struct PeopleShipHomePage { | @@ -78,7 +78,9 @@ struct PeopleShipHomePage { | ||
| 78 | ///1-this.topOpacity 联动上滑 | 78 | ///1-this.topOpacity 联动上滑 |
| 79 | .height(this.topOpacity>1?0:120*(1-this.topOpacity)) | 79 | .height(this.topOpacity>1?0:120*(1-this.topOpacity)) |
| 80 | .objectFit(ImageFit.Cover) | 80 | .objectFit(ImageFit.Cover) |
| 81 | + } | ||
| 81 | 82 | ||
| 83 | + Stack({ alignContent: Alignment.Top }){ | ||
| 82 | Row() | 84 | Row() |
| 83 | .height(px2vp(this.topSafeHeight)) | 85 | .height(px2vp(this.topSafeHeight)) |
| 84 | .width("100%") | 86 | .width("100%") |
| @@ -66,7 +66,7 @@ export struct PeopleShipHomePageTopComponent { | @@ -66,7 +66,7 @@ export struct PeopleShipHomePageTopComponent { | ||
| 66 | .layoutWeight(1) | 66 | .layoutWeight(1) |
| 67 | .margin({ | 67 | .margin({ |
| 68 | left: '12vp', | 68 | left: '12vp', |
| 69 | - bottom: '10vp', | 69 | + bottom: '20vp', |
| 70 | right: '12vp' | 70 | right: '12vp' |
| 71 | }) | 71 | }) |
| 72 | } | 72 | } |
| @@ -23,12 +23,15 @@ export struct SearchCreatorComponent{ | @@ -23,12 +23,15 @@ export struct SearchCreatorComponent{ | ||
| 23 | .alt($r('app.media.icon_default_head_mater')) | 23 | .alt($r('app.media.icon_default_head_mater')) |
| 24 | .height('92lpx') | 24 | .height('92lpx') |
| 25 | .margin({bottom:'15lpx'}) | 25 | .margin({bottom:'15lpx'}) |
| 26 | + .borderWidth(1) | ||
| 27 | + .borderColor('#EDEDED') | ||
| 26 | .borderRadius(50) | 28 | .borderRadius(50) |
| 27 | Row(){ | 29 | Row(){ |
| 28 | Image(this.item.authIcon) | 30 | Image(this.item.authIcon) |
| 29 | .width('32lpx') | 31 | .width('32lpx') |
| 30 | .height('32lpx') | 32 | .height('32lpx') |
| 31 | .objectFit(ImageFit.Cover) | 33 | .objectFit(ImageFit.Cover) |
| 34 | + .margin({bottom:5}) | ||
| 32 | }.width('92lpx') | 35 | }.width('92lpx') |
| 33 | .justifyContent(FlexAlign.End) | 36 | .justifyContent(FlexAlign.End) |
| 34 | }.width('92lpx') | 37 | }.width('92lpx') |
-
Please register or login to post a comment