Showing
1 changed file
with
6 additions
and
7 deletions
| @@ -210,23 +210,22 @@ export struct FeedBackActivity { | @@ -210,23 +210,22 @@ export struct FeedBackActivity { | ||
| 210 | .padding({ bottom: 44 }) | 210 | .padding({ bottom: 44 }) |
| 211 | Column(){ | 211 | Column(){ |
| 212 | Text($r('app.string.submit')) | 212 | Text($r('app.string.submit')) |
| 213 | - .align(Alignment.Center) | 213 | + .textAlign(TextAlign.Center) |
| 214 | .height(44) | 214 | .height(44) |
| 215 | .width('90%') | 215 | .width('90%') |
| 216 | - .fontColor(this.canSubmit?$r('app.color.color_9E9E9E_40'):$r('app.color.color_fff')) | 216 | + .fontColor(this.canSubmit ? $r('app.color.color_9E9E9E_40') : $r('app.color.color_fff')) |
| 217 | .fontSize($r('app.float.font_size_18')) | 217 | .fontSize($r('app.float.font_size_18')) |
| 218 | - .backgroundColor(this.canSubmit?$r('app.color.color_ED2800_99'):$r('app.color.color_EDEDED')) | 218 | + .backgroundColor(this.canSubmit ? $r('app.color.color_ED2800_99') : $r('app.color.color_EDEDED')) |
| 219 | .borderRadius(4) | 219 | .borderRadius(4) |
| 220 | .onClick(async (event: ClickEvent) => { | 220 | .onClick(async (event: ClickEvent) => { |
| 221 | - if(await FastClickUtil.isMinDelayTime()){ | 221 | + if (await FastClickUtil.isMinDelayTime()) { |
| 222 | return | 222 | return |
| 223 | } | 223 | } |
| 224 | this.reportCommit() | 224 | this.reportCommit() |
| 225 | }) | 225 | }) |
| 226 | - Blank().height(15).width('100%') | 226 | + .margin({bottom:20}) |
| 227 | } | 227 | } |
| 228 | - .height(59) | ||
| 229 | - } | 228 | + }.margin({bottom:20}) |
| 230 | } | 229 | } |
| 231 | } | 230 | } |
| 232 | 231 |
-
Please register or login to post a comment