forget.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <template>
  2. <view class="container">
  3. <u-form :model="forgetForm" ref="forgetForm" label-width="160"
  4. :label-style="{ color: '#000', fontSize: '30rpx'}">
  5. <u-form-item label="手机号" prop="shouJiHao" :border-bottom="false">
  6. <u-input height="80" placeholder="请输入手机号" border-color="#d0d0d0" v-model="forgetForm.shouJiHao"
  7. :border="true" class="form-item-input" type="number" />
  8. </u-form-item>
  9. <u-form-item label="验证码" prop="yanZhengMa" :border-bottom="false">
  10. <view class="code-form-item">
  11. <u-input height="80" placeholder="请输入验证码" border-color="#d0d0d0" v-model="forgetForm.yanZhengMa"
  12. :border="true" class="form-item-input code-input">
  13. </u-input>
  14. <u-button size="mini" type="primary" class="code-button" @click="getCode">{{ tips }}</u-button>
  15. </view>
  16. </u-form-item>
  17. <u-form-item label="新密码" prop="xinMiMa" :border-bottom="false">
  18. <u-input height="80" placeholder="请输入新密码" border-color="#d0d0d0" v-model="forgetForm.xinMiMa"
  19. :border="true" class="form-item-input" type="password" />
  20. </u-form-item>
  21. <view class="form-button" @click="submit">
  22. 确认
  23. </view>
  24. </u-form>
  25. <u-verification-code :seconds="seconds" ref="uCode1" @change="codeChange"></u-verification-code>
  26. <u-popup v-model="show" mode="center" border-radius="10">
  27. <view class="popup">
  28. <text class="popup-title">请输入验证码</text>
  29. <view class="popup-content">
  30. <u-input height="80" placeholder="请输入验证码" border-color="#d0d0d0"
  31. v-model="shuzijiaoduimaForm.shuZiJiaoDuiMa" :border="true" class="form-item-input"
  32. style="flex-grow: 1;" @confirm="submitCode" />
  33. <image :src="shuzijiaoduimaSrc" mode="aspectFit"
  34. style="height:40px;margin-left:20rpx;width: 180rpx;flex: 0 0 auto;"></image>
  35. </view>
  36. <view class="popup-btn">
  37. <u-button type="primary" @click="submitCode" style="width: 48%;flex: 0 0 auto;">提交</u-button>
  38. <u-button type="default" @click="closePopup" style="width: 48%;flex: 0 0 auto;">取消</u-button>
  39. </view>
  40. </view>
  41. </u-popup>
  42. </view>
  43. </template>
  44. <script>
  45. import {
  46. msg
  47. } from "@/utils/common.js"
  48. export default {
  49. data() {
  50. return {
  51. // ----验证码 start -----
  52. shuzijiaoduimaForm: {
  53. shuZiJiaoDuiMa: '',
  54. shuZiJiaoDuiMaUuid: ''
  55. },
  56. shuzijiaoduimaSrc: 'https://imgconvert.csdnimg.cn/aHR0cDovL3RjLnhpYW55dWNvZGVyLmNuL2Jsb2cyMDIwMDEwNDIwMzUwNy5wbmc?x-oss-process=image/format,png',
  57. show: false,
  58. tips: '',
  59. seconds: 60,
  60. // ----验证码 end -----
  61. forgetForm: {
  62. shouJiHao: '', //手机号
  63. yanZhengMa: "", //验证码
  64. yanZhengMaUuid: "",
  65. xinMiMa: '', // 新密码
  66. },
  67. rules: {
  68. yanZhengMa: [{
  69. required: true,
  70. message: '请输入验证码',
  71. trigger: ['blur']
  72. }],
  73. xinMiMa: [{
  74. required: true,
  75. message: '请输入新密码',
  76. trigger: ['blur']
  77. }],
  78. shouJiHao: [{
  79. required: true,
  80. message: '请输入手机号码',
  81. trigger: ['blur']
  82. }, {
  83. pattern: /^1[3-9]\d{9}$/,
  84. message: '请输入正确的手机号',
  85. trigger: ['blur']
  86. }]
  87. }
  88. };
  89. },
  90. methods: {
  91. submit() {
  92. const that = this;
  93. that.$refs.forgetForm.validate((valid) => {
  94. console.log(valid, that.forgetForm, 456);
  95. if (valid) {
  96. msg("数据验证成功")
  97. // 联调
  98. }
  99. })
  100. },
  101. back() {
  102. uni.navigateBack({
  103. delta: 1,
  104. animationType: 'pop-out',
  105. animationDuration: 200
  106. })
  107. },
  108. // --------验证码 start---------
  109. codeChange(text) {
  110. this.tips = text;
  111. },
  112. getCode() {
  113. let { shouJiHao } = this.forgetForm
  114. if(!/^1[3-9]\d{9}$/.test(shouJiHao)){
  115. msg("请输入正确的手机号");
  116. return;
  117. }
  118. if (this.$refs.uCode1.canGetCode) {
  119. this.showPopup()
  120. } else {
  121. msg('倒计时结束后再发送');
  122. }
  123. },
  124. end() {
  125. msg('倒计时结束');
  126. },
  127. start() {
  128. msg('倒计时开始');
  129. },
  130. showPopup() {
  131. // 模拟向后端请求验证码
  132. // 1.获取数字校验码图片
  133. // 2.显示弹窗
  134. uni.showLoading({
  135. title: '正在获取图片'
  136. })
  137. setTimeout(() => {
  138. uni.hideLoading();
  139. msg('获取成功')
  140. this.show = true;
  141. }, 1500);
  142. // 联调
  143. // this.loadImage()
  144. // this.show = true;
  145. },
  146. closePopup() {
  147. this.show = false;
  148. this.shuzijiaoduimaForm.shuZiJiaoDuiMa = ''; // 清空输入框
  149. },
  150. async submitCode() {
  151. let { shuZiJiaoDuiMa } = this.shuzijiaoduimaForm
  152. if (!/^\d{4}$/.test(shuZiJiaoDuiMa)) {
  153. uni.showToast({
  154. title: '请输入4位验证码',
  155. icon: 'none'
  156. });
  157. return;
  158. }
  159. // 联调 检验是否正确
  160. // const checkRes = await checkShuzijiaoduima();
  161. // if(!checkRes){
  162. // uni.showToast({
  163. // title: '验证码输入错误',
  164. // icon: 'none'
  165. // });
  166. // return;
  167. // }
  168. // // 发送手机验证码
  169. // const codeRes = await getCodeApi();
  170. // if(codeRes && codeRes.yanZhengMaUuid){
  171. // this.forgetForm.yanZhengMaUuid = codeRes.yanZhengMaUuid
  172. // this.closePopup();
  173. // this.$refs.uCode1.start()
  174. // }
  175. uni.showLoading({
  176. title: '正在校验验证码'
  177. })
  178. setTimeout(() => {
  179. uni.hideLoading();
  180. msg('填写正确');
  181. this.closePopup();
  182. this.$refs.uCode1.start()
  183. }, 1500);
  184. },
  185. // 加载验证码图片
  186. async loadImage() {
  187. // 联调
  188. // const img = await loadShuzijiaoduima();
  189. // this.shuzijiaoduimaForm.shuZiJiaoDuiMaUuid = img.shuZiJiaoDuiMaUuid
  190. // this.shuzijiaoduimaSrc = img.shuzijiaoduimaSrc
  191. console.log("加载图片")
  192. }
  193. // --------验证码 end---------
  194. },
  195. onLoad() {},
  196. onReady() {
  197. this.$refs.forgetForm.setRules(this.rules);
  198. }
  199. }
  200. </script>
  201. <style lang="scss">
  202. .u-form-item {
  203. padding: 30rpx 0 !important;
  204. }
  205. .u-form-item .u-input--border {
  206. border-radius: 16rpx !important;
  207. }
  208. .u-form-item .u-form-item--left__content__label {
  209. display: block !important;
  210. text-align: justify;
  211. text-align-last: justify;
  212. padding: 0 20rpx 0 10rpx;
  213. }
  214. .u-input {
  215. background-color: #f7f7f7 !important;
  216. }
  217. .code-input .u-input{
  218. padding-right: 200rpx !important;
  219. }
  220. .code-button .u-size-mini{
  221. display: block !important;
  222. }
  223. </style>
  224. <style lang="scss" scoped>
  225. .container {
  226. height: 100vh;
  227. width: 100vw;
  228. background-color: #ffffff;
  229. padding: 0 40rpx;
  230. }
  231. .form-item-input {
  232. width: 100%;
  233. }
  234. .form-button {
  235. background: linear-gradient(90deg, #006af5, #21b0fc);
  236. border-radius: 20rpx;
  237. line-height: 80rpx;
  238. text-align: center;
  239. color: #fff;
  240. margin: 50rpx 0;
  241. }
  242. .form-tip {
  243. text-align: center;
  244. color: #000000;
  245. }
  246. .code-form-item{
  247. position: relative;
  248. .code-button{
  249. position: absolute;
  250. right: 15rpx;
  251. top: 50%;
  252. transform: translateY(-50%);
  253. }
  254. }
  255. // 数字验证码弹窗
  256. .popup {
  257. padding: 40rpx;
  258. border-radius: 20rpx;
  259. .popup-title {
  260. font-size: 18px;
  261. text-align: center;
  262. display: inline-block;
  263. width: 100%;
  264. // margin-bottom: 15px;
  265. }
  266. .popup-content {
  267. display: flex;
  268. align-items: center;
  269. margin: 50rpx 0;
  270. }
  271. .popup-btn {
  272. display: flex;
  273. justify-content: space-between;
  274. }
  275. }
  276. </style>