password.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <view class="password">
  3. <u-toast ref="uToast" />
  4. <view class="con">
  5. <view class="form">
  6. <view class="input flex">
  7. <view class="label">手机号</view>
  8. <u-input v-model="phone" maxlength="11" :clearable="false" type="number" :border="border" placeholder="请输入手机号" />
  9. </view>
  10. <view class="input sms flex">
  11. <view class="label">验证码</view>
  12. <u-input v-model="ver_code" :clearable="false" type="text" :border="border" placeholder="请输入验证码" />
  13. <view class="wrap" >
  14. <u-toast ref="uToast"></u-toast>
  15. <u-verification-code :seconds="seconds" start-text="发送验证码" @end="end" @start="start" ref="uCode"
  16. @change="codeChange"></u-verification-code>
  17. <view class="tips" @tap="getCode" >{{tips}}</view>
  18. </view>
  19. </view>
  20. <view class="input flex">
  21. <view class="label">密码</view>
  22. <u-input v-model="password" :clearable="false" type="password" :border="border" placeholder="请输入密码" />
  23. </view>
  24. <view class="input flex">
  25. <view class="label">确认密码</view>
  26. <u-input v-model="confirm_password" :clearable="false" type="password" :border="border" placeholder="请重新输入密码" />
  27. </view>
  28. </view>
  29. </view>
  30. <view class="btn" @click="ForgetPassword()">
  31. 提交
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. phone:'',
  40. ver_code:'',
  41. password:'',
  42. confirm_password:"",
  43. checked:true,
  44. seconds: 60,
  45. tips: '获取验证码',
  46. }
  47. },
  48. onLoad(option) {
  49. this.getUserInfo()
  50. },
  51. methods: {
  52. agreement(){
  53. uni.navigateTo({
  54. url: '/pages/login/agreement',
  55. })
  56. },
  57. checkboxGroupChange(e) {
  58. console.log(this.checked);
  59. },
  60. codeChange(text) {
  61. this.tips = text;
  62. },
  63. // 获取短信
  64. getCode() {
  65. console.log('发送验证码')
  66. if(this.$refs.uCode.canGetCode) {
  67. // 模拟向后端请求验证码
  68. // uni.showLoading({
  69. // title: '正在获取验证码'
  70. // })
  71. console.log(this.phone)
  72. if(this.phone==''){
  73. this.$refs.uToast.show({
  74. title: '请输入手机号',
  75. type: 'error ',
  76. })
  77. return;
  78. }
  79. if (!(/^1(3|4|5|6|7|8|9)\d{9}$/.test(this.phone))) {
  80. this.$refs.uToast.show({
  81. title: '请输入正确的手机号格式',
  82. type: 'warning ',
  83. })
  84. return;
  85. }
  86. this.$http.smsSend({phone:this.phone,event:'forgetpwd'})
  87. .then(res=>{
  88. if(res.data.code==200){
  89. this.$u.toast('验证码已发送');
  90. this.$refs.uCode.start();
  91. }else{
  92. this.$refs.uToast.show({
  93. title: res.data.msg,
  94. type: 'error ',
  95. })
  96. }
  97. })
  98. // setTimeout(() => {
  99. // uni.hideLoading();
  100. // // 这里此提示会被this.start()方法中的提示覆盖
  101. // this.$u.toast('验证码已发送');
  102. // // 通知验证码组件内部开始倒计时
  103. // this.$refs.uCode.start();
  104. // }, 2000);
  105. } else {
  106. this.$u.toast('倒计时结束后再发送');
  107. }
  108. },
  109. // 登录
  110. ForgetPassword(){
  111. if(this.phone==''){
  112. this.$refs.uToast.show({
  113. title: '请输入手机号',
  114. type: 'error ',
  115. })
  116. return;
  117. }
  118. if (!(/^1(3|4|5|6|7|8|9)\d{9}$/.test(this.phone))) {
  119. this.$refs.uToast.show({
  120. title: '请输入正确的手机号格式',
  121. type: 'warning ',
  122. })
  123. return;
  124. }
  125. if(this.ver_code==''){
  126. this.$refs.uToast.show({
  127. title: '请输入验证码',
  128. type: 'error ',
  129. })
  130. return;
  131. }
  132. if(this.password==''){
  133. this.$refs.uToast.show({
  134. title: '请输入密码',
  135. type: 'error ',
  136. })
  137. return;
  138. }
  139. if(this.confirm_password==''){
  140. this.$refs.uToast.show({
  141. title: '请输入确认密码',
  142. type: 'error ',
  143. })
  144. return;
  145. }
  146. if(this.confirm_password!=this.password){
  147. this.$refs.uToast.show({
  148. title: '两次输入密码不一致',
  149. type: 'error ',
  150. })
  151. return;
  152. }
  153. this.$http.ForgetPassword({
  154. confirm_password: this.confirm_password,
  155. password: this.password,
  156. phone: this.phone,
  157. ver_code: this.ver_code
  158. })
  159. .then(res=>{
  160. console.log(res)
  161. if(res.data.code==200){
  162. this.$refs.uToast.show({
  163. title: '修改成功',
  164. })
  165. uni.navigateTo({
  166. url: '/pages/index/my',
  167. })
  168. }else{
  169. this.$refs.uToast.show({
  170. title: res.data.message,
  171. type: 'error ',
  172. })
  173. }
  174. })
  175. },
  176. getUserInfo(){
  177. this.$http.getUserInfo()
  178. .then(res=>{
  179. if(res.data.code==200){
  180. // 是否信息完整
  181. if(res.data.result.completeInformation != 2){
  182. uni.navigateTo({
  183. url: '/pages/login/perfect',
  184. })
  185. }
  186. }
  187. })
  188. },
  189. }
  190. }
  191. </script>
  192. <style lang="scss">
  193. .password{
  194. position: relative;
  195. height: 100%;
  196. overflow: hidden;
  197. box-sizing: border-box;
  198. .bgc{
  199. position: absolute;
  200. left:0;
  201. top:0;
  202. width: 100%;
  203. height: 100%;
  204. }
  205. .con{
  206. position: relative;
  207. height: 100%;
  208. color: #000;
  209. background-color: #fff;
  210. .h2{
  211. font-size: 56rpx;
  212. padding-top: 80rpx;
  213. }
  214. .form{
  215. margin-top: 20rpx;
  216. }
  217. .u-scroll-box{
  218. display: block;
  219. .u-tab-item{
  220. margin-right: 60rpx;
  221. }
  222. }
  223. }
  224. .btn{
  225. width: 570rpx;
  226. margin: 100rpx auto 0;
  227. height: 80rpx;
  228. text-align: center;
  229. line-height: 80rpx;
  230. background: $color;
  231. border-radius: 40rpx;
  232. font-size: 28rpx;
  233. color:#fff;
  234. }
  235. .input{
  236. padding: 26rpx 32rpx;
  237. .label{
  238. width: 200rpx;
  239. color: rgba(0,0,0,0.8);
  240. }
  241. u-input{
  242. flex: 1;
  243. }
  244. }
  245. .agreement{
  246. position: absolute;
  247. bottom:70rpx;
  248. text-align: center;
  249. font-size: 24rpx;
  250. text{
  251. color: $color;
  252. }
  253. }
  254. }
  255. </style>