forget.vue 6.1 KB

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