Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
张善主
2024-05-17 17:01:38 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6f0517377131365ee94ac1f6ed2c2764fdf3bfeb
6f051737
1 parent
647f9a07
feat(意见反馈):底部按钮调整
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
sight_harmony/features/wdComponent/src/main/ets/components/FeedBackActivity.ets
sight_harmony/features/wdComponent/src/main/ets/components/FeedBackActivity.ets
View file @
6f05173
...
...
@@ -210,23 +210,22 @@ export struct FeedBackActivity {
.padding({ bottom: 44 })
Column(){
Text($r('app.string.submit'))
.
align(Alignment
.Center)
.
textAlign(TextAlign
.Center)
.height(44)
.width('90%')
.fontColor(this.canSubmit
?$r('app.color.color_9E9E9E_40'):
$r('app.color.color_fff'))
.fontColor(this.canSubmit
? $r('app.color.color_9E9E9E_40') :
$r('app.color.color_fff'))
.fontSize($r('app.float.font_size_18'))
.backgroundColor(this.canSubmit
?$r('app.color.color_ED2800_99'):
$r('app.color.color_EDEDED'))
.backgroundColor(this.canSubmit
? $r('app.color.color_ED2800_99') :
$r('app.color.color_EDEDED'))
.borderRadius(4)
.onClick(async (event: ClickEvent) => {
if
(await FastClickUtil.isMinDelayTime())
{
if
(await FastClickUtil.isMinDelayTime())
{
return
}
this.reportCommit()
})
Blank().height(15).width('100%'
)
.margin({bottom:20}
)
}
.height(59)
}
}.margin({bottom:20})
}
}
...
...
Please
register
or
login
to post a comment