forgot.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. show_pwd() {
  51. if(that.pwd_type == 'password') {
  52. that.pwd_type = 'text'
  53. } else {
  54. that.pwd_type = 'password'
  55. }
  56. },
  57. // 验证码文字
  58. codeChange(text) {
  59. that.tips = text
  60. },
  61. // 获取验证码
  62. getCode() {
  63. if(that.$refs.uCode.canGetCode) {
  64. uni.showLoading({
  65. title: '正在获取验证码'
  66. })
  67. $api.req({
  68. url: '/data/api.Login/sendsms',
  69. method: 'POST',
  70. data: {
  71. phone: that.userInfo.name,
  72. type: 6
  73. }
  74. }, function(res) {
  75. uni.hideLoading();
  76. if(res.code == 1) {
  77. uni.$u.toast('验证码已发送')
  78. that.$refs.uCode.start()
  79. } else {
  80. uni.$u.toast('验证码发送失败')
  81. }
  82. })
  83. } else {
  84. uni.$u.toast('倒计时结束后再发送')
  85. }
  86. },
  87. // 提交
  88. submit() {
  89. if ($api.formCheck(that.userInfo.name,"require") && $api.formCheck(that.userInfo.password, "require") && $api.formCheck(that.code, "code6")) {
  90. $api.req({
  91. url: '/data/api.business.Login/findpwd',
  92. method: 'POST',
  93. data: {
  94. mobile: that.userInfo.name,
  95. code: that.code,
  96. password: that.userInfo.password,
  97. }
  98. }, function(res) {
  99. console.log(res)
  100. if(res.code == 1) {
  101. $api.info('修改成功'),
  102. $api.jump(1,-1)
  103. } else {
  104. }
  105. })
  106. }
  107. }
  108. },
  109. }
  110. </script>
  111. <style lang="scss" scoped>
  112. .content::v-deep {
  113. padding: 0 60rpx;
  114. .form {
  115. width: 100%;
  116. padding-top: 64rpx;
  117. .u-input {
  118. width: 630rpx !important;
  119. height: 104rpx !important;
  120. background-color: #f4f4f4;
  121. border-radius: 52rpx;
  122. font-size: 30rpx !important;
  123. box-sizing: border-box;
  124. padding: 30rpx 48rpx !important;
  125. margin: 26rpx 0;
  126. }
  127. .pwd_icon {
  128. width: 40rpx;
  129. height: 40rpx;
  130. }
  131. .code {
  132. font-size: 30rpx;
  133. color: #506dff;
  134. }
  135. }
  136. .button {
  137. width: 100%;
  138. height: 96rpx;
  139. background-color: #506dff;
  140. border-radius: 50rpx;
  141. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  142. font-size: 40rpx;
  143. color: #fff;
  144. margin: 40rpx 0 36rpx;
  145. }
  146. }
  147. </style>