鸿蒙 - 忘记密码页面
·
import { router } from '@kit.ArkUI'
@Entry
@Component
struct forgetPWD {
build() {
Column({
space:15
}){
Row(){
Text('重置密码')
TextInput({placeholder:'请输入密码'})
}
TextInput({placeholder:'请确认密码'}).type(InputType.Password)
Button('确定').onClick(()=>{
setTimeout(()=>{
router.pushUrl({
url:"pages/week3/day5/Login"
})
},1500)
})
}
.height('100%')
.width('100%')
}
}

更多推荐



所有评论(0)