Showing
1 changed file
with
8 additions
and
3 deletions
| @@ -130,11 +130,16 @@ struct ModifyPasswordPage { | @@ -130,11 +130,16 @@ struct ModifyPasswordPage { | ||
| 130 | .alignItems(HorizontalAlign.Start) | 130 | .alignItems(HorizontalAlign.Start) |
| 131 | 131 | ||
| 132 | Row() { | 132 | Row() { |
| 133 | - Button("确认", { type: ButtonType.Normal, stateEffect: true }) | 133 | + Button( { type: ButtonType.Normal, stateEffect: true }){ |
| 134 | + Text("确认") | ||
| 135 | + .fontColor("#fff") | ||
| 136 | + .fontSize("35lpx") | ||
| 137 | + .lineHeight("50lpx") | ||
| 138 | + .opacity(this.btnStatus ?1:0.5) | ||
| 139 | + } | ||
| 134 | .width('100%') | 140 | .width('100%') |
| 135 | .height('80lpx') | 141 | .height('80lpx') |
| 136 | - .backgroundColor(this.btnStatus ? '#da3e22' : '#e5856d') | ||
| 137 | - .fontColor('#fff') | 142 | + .backgroundColor(this.btnStatus ? '#ED2800' : '#99ED2800') |
| 138 | .borderRadius('4vp') | 143 | .borderRadius('4vp') |
| 139 | .onClick(() => { | 144 | .onClick(() => { |
| 140 | if(this.btnStatus){ | 145 | if(this.btnStatus){ |
-
Please register or login to post a comment