张善主

feat(意见反馈):底部按钮调整

@@ -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