forgetPassword.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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="resultPhone" type="text" :border="false"
  9. :clearable='false' :disabled="true" />
  10. </view>
  11. <view class="input u-flex">
  12. <u-input placeholder-style='font-size: 32rpx;
  13. font-family: PingFangSC, PingFang SC;
  14. font-weight: 400;
  15. color: #222222;opacity: 0.5;' placeholder='请输入验证码' v-model="code" type="text" :border="false" :clearable='false' />
  16. <view class="code">
  17. 获取验证码
  18. </view>
  19. </view>
  20. <view class="button" @click="changePasswoed">
  21. 确认
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. code: '',
  30. phone: '',
  31. resultPhone: ''
  32. };
  33. },
  34. onLoad() {
  35. if (uni.getStorageSync('token')) {
  36. this.getUserinfo()
  37. }
  38. },
  39. methods: {
  40. changePasswoed() {
  41. uni.navigateTo({
  42. url: '/pages/login/changePasswoed'
  43. })
  44. },
  45. getUserinfo() {
  46. this.$u.post('api/user/getUserinfo').then(res => {
  47. this.phone = res.mobile
  48. this.resultPhone = res.phone_r
  49. })
  50. }
  51. }
  52. }
  53. </script>
  54. <style lang="scss">
  55. .page {
  56. padding: 52rpx 36rpx 0;
  57. border-top: 2rpx solid rgba(235, 235, 235, 1);
  58. }
  59. .code {
  60. font-size: 32rpx;
  61. font-family: PingFangSC, PingFang SC;
  62. font-weight: 400;
  63. color: #06A971;
  64. }
  65. .button {
  66. width: 678rpx;
  67. height: 84rpx;
  68. background: #06A971;
  69. border-radius: 8rpx;
  70. opacity: 0.5;
  71. text-align: center;
  72. margin-top: 46rpx;
  73. line-height: 84rpx;
  74. font-size: 32rpx;
  75. font-family: PingFangSC, PingFang SC;
  76. font-weight: 400;
  77. color: #FFFFFF;
  78. }
  79. .title {
  80. height: 74rpx;
  81. font-size: 52rpx;
  82. font-family: PingFangSC, PingFang SC;
  83. font-weight: 500;
  84. color: #222222;
  85. line-height: 74rpx;
  86. }
  87. .input {
  88. height: 122rpx;
  89. display: flex;
  90. align-items: center;
  91. border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
  92. }
  93. </style>