forgetPassword.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <view class="page">
  3. <view class="title">身份验证</view>
  4. <view class="input u-flex" style="margin-top: 28rpx;">
  5. <u-input placeholder-style='font-size: 32rpx;
  6. font-family: PingFangSC, PingFang SC;
  7. font-weight: 400;
  8. color: #222222;opacity: 0.5;' placeholder='手机号' v-model="phone" type="text" :border="false" :clearable='false' />
  9. </view>
  10. <view class="input u-flex">
  11. <u-input placeholder-style='font-size: 32rpx;
  12. font-family: PingFangSC, PingFang SC;
  13. font-weight: 400;
  14. color: #222222;opacity: 0.5;' placeholder='请输入验证码' v-model="code" type="text" :border="false" :clearable='false' />
  15. <view class="code">
  16. 获取验证码
  17. </view>
  18. </view>
  19. <view class="button" @click="changePasswoed">
  20. 确认
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. code:'',
  29. phone:''
  30. };
  31. },
  32. methods:{
  33. changePasswoed(){
  34. uni.navigateTo({
  35. url:'/pages/login/changePasswoed'
  36. })
  37. }
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. .page {
  43. padding: 52rpx 36rpx 0;
  44. border-top: 2rpx solid #979797;
  45. }
  46. .code {
  47. font-size: 32rpx;
  48. font-family: PingFangSC, PingFang SC;
  49. font-weight: 400;
  50. color: #06A971;
  51. }
  52. .button {
  53. width: 678rpx;
  54. height: 84rpx;
  55. background: #06A971;
  56. border-radius: 8rpx;
  57. opacity: 0.5;
  58. text-align: center;
  59. margin-top: 46rpx;
  60. line-height: 84rpx;
  61. font-size: 32rpx;
  62. font-family: PingFangSC, PingFang SC;
  63. font-weight: 400;
  64. color: #FFFFFF;
  65. }
  66. .title {
  67. height: 74rpx;
  68. font-size: 52rpx;
  69. font-family: PingFangSC, PingFang SC;
  70. font-weight: 500;
  71. color: #222222;
  72. line-height: 74rpx;
  73. }
  74. .input {
  75. height: 122rpx;
  76. display: flex;
  77. align-items: center;
  78. border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
  79. }
  80. </style>