forgot.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <view class="content">
  3. <view class="form vflex">
  4. <u-input v-model="userInfo.name" placeholder="用户名/手机号"></u-input>
  5. <u-input v-model="code" placeholder="请输入验证码">
  6. <template slot="suffix">
  7. <u-code ref="uCode" @change="codeChange" seconds="60" changeText="X秒重新获取"></u-code>
  8. <view class="code" @tap="getCode" >{{tips}}</view>
  9. </template>
  10. </u-input>
  11. <u-input :type="pwd_type" v-model="userInfo.password" placeholder="请输入密码">
  12. <template slot="suffix">
  13. <view @click="show_pwd" v-if="pwd_type == 'password'">
  14. <image src="/static/images/login/biyanjing.png" class="pwd_icon"></image>
  15. </view>
  16. <view @click="show_pwd" v-if="pwd_type == 'text'">
  17. <image src="/static/images/login/yanjing.png" class="pwd_icon"></image>
  18. </view>
  19. </template>
  20. </u-input>
  21. </view>
  22. <view class="button hflex acenter jcenter" @click="submit">
  23. <view>提交</view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. import $api from '@/static/js/api.js'
  29. var that = ''
  30. export default {
  31. data() {
  32. return {
  33. userInfo: {
  34. name: '',
  35. password: ''
  36. },
  37. code: '',
  38. tips: '获取验证码',
  39. pwd_type: 'password',
  40. }
  41. },
  42. onLoad() {
  43. that = this
  44. },
  45. watch: {
  46. value(newValue,oldValue) {
  47. }
  48. },
  49. methods: {
  50. // 验证码文字
  51. codeChange(text) {
  52. that.tips = text
  53. },
  54. // 获取验证码
  55. getCode() {
  56. if(that.$refs.uCode.canGetCode) {
  57. uni.showLoading({
  58. title: '正在获取验证码'
  59. })
  60. $api.req({
  61. url: '/data/api.Login/sendsms',
  62. data: {
  63. phone: that.userInfo.phone,
  64. type: 3
  65. }
  66. }, function(res) {
  67. uni.hideLoading();
  68. if(res.code == 1) {
  69. uni.$u.toast('验证码已发送')
  70. that.$refs.uCode.start()
  71. } else {
  72. uni.$u.toast('验证码发送失败')
  73. }
  74. })
  75. } else {
  76. uni.$u.toast('倒计时结束后再发送')
  77. }
  78. },
  79. // 提交
  80. submit() {
  81. if ($api.formCheck(that.userInfo.name,"require") && $api.formCheck(that.userInfo.password, "require") && $api.formCheck(that.code, "code4")) {
  82. $api.req({
  83. url: '/data/api.Login/findpwd',
  84. method: 'POST',
  85. data: {
  86. phone: that.userInfo.name,
  87. verify: that.code,
  88. password: that.userInfo.password,
  89. }
  90. }, function(res) {
  91. console.log(res)
  92. if(res.code == 1) {
  93. $api.info('修改成功'),
  94. $api.jump(1,-1)
  95. } else {
  96. }
  97. })
  98. }
  99. }
  100. },
  101. }
  102. </script>
  103. <style lang="scss" scoped>
  104. .content::v-deep {
  105. padding: 0 60rpx;
  106. .form {
  107. width: 100%;
  108. padding-top: 64rpx;
  109. .u-input {
  110. width: 630rpx !important;
  111. height: 104rpx !important;
  112. background-color: #f4f4f4;
  113. border-radius: 52rpx;
  114. font-size: 30rpx !important;
  115. box-sizing: border-box;
  116. padding: 30rpx 48rpx !important;
  117. margin: 26rpx 0;
  118. }
  119. .pwd_icon {
  120. width: 40rpx;
  121. height: 40rpx;
  122. }
  123. .code {
  124. font-size: 30rpx;
  125. color: #506dff;
  126. }
  127. }
  128. .button {
  129. width: 100%;
  130. height: 96rpx;
  131. background-color: #506dff;
  132. border-radius: 50rpx;
  133. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  134. font-size: 40rpx;
  135. color: #fff;
  136. margin: 40rpx 0 36rpx;
  137. }
  138. }
  139. </style>