forget.vue 6.5 KB

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