| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <template>
- <div class="register absolute">
- <div class="shading">
- <div class="pictrue acea-row row-center-wrapper">
- <image src="/static/images/logo2.png" />
- </div>
- </div>
- <div class="whiteBg">
- <div class="title">找回密码</div>
- <div class="list">
- <div class="item">
- <div class="acea-row row-middle">
- <image src="/static/images/phone_1.png"></image>
- <input type="text" placeholder="输入手机号码" v-model="account" />
- </div>
- </div>
- <div class="item">
- <div class="acea-row row-middle">
- <image src="/static/images/code_2.png"></image>
- <input type="text" placeholder="填写验证码" class="codeIput" v-model="captcha" />
- <button class="code" :disabled="disabled" :class="disabled === true ? 'on' : ''" @click="code">
- {{ text }}
- </button>
- </div>
- </div>
- <div class="item">
- <div class="acea-row row-middle">
- <image src="/static/images/code_2.png"></image>
- <input type="password" placeholder="填写您的新密码" v-model="password" />
- </div>
- </div>
- <div class="item" v-if="isShowCode">
- <div class="align-left">
- <input type="text" placeholder="填写验证码" class="codeIput" v-model="codeVal" />
- <div class="code" @click="again"><img :src="codeUrl" /></div>
- </div>
- </div>
- </div>
- <div class="logon" @click="registerReset">确认</div>
- <div class="tip">
- <span class="font-color-red" @click="back">立即登录</span>
- </div>
- </div>
- <div class="bottom"></div>
- </div>
- </template>
- <script>
- import sendVerifyCode from "@/mixins/SendVerifyCode";
- import {
- registerVerify,
- registerReset,
- getCodeApi
- } from "@/api/user";
- // import { validatorDefaultCatch } from "@/utils/dialog";
- // import attrs, { required, alpha_num, chs_phone } from "@utils/validate";
- // import { VUE_APP_API_URL } from "@utils";
- export default {
- name: "RetrievePassword",
- data: function() {
- return {
- account: "",
- password: "",
- captcha: "",
- keyCode: "",
- codeUrl: "",
- codeVal: "",
- isShowCode: false
- };
- },
- mixins: [sendVerifyCode],
- mounted: function() {
- this.getCode();
- },
- methods: {
- back() {
- uni.navigateBack();
- },
- again() {
- this.codeUrl =
- VUE_APP_API_URL + "/captcha?" + this.keyCode + Date.parse(new Date());
- console.log(this.codeUrl);
- },
- getCode() {
- getCodeApi()
- .then(res => {
- this.keyCode = res.data.key;
- })
- .catch(res => {
- this.$dialog.error(res.msg);
- });
- },
- async registerReset() {
- var that = this;
- if (!that.account) return that.$util.Tips({
- title: '请填写手机号码'
- });
- if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
- title: '请输入正确的手机号码'
- });
- if (!that.captcha) return that.$util.Tips({
- title: '请填写验证码'
- });
- registerReset({
- account: that.account,
- captcha: that.captcha,
- password: that.password,
- code: that.codeVal
- })
- .then(res => {
- that.$util.Tips({
- title: res.msg
- }, {
- tab: 3
- })
- })
- .catch(res => {
- that.$util.Tips({
- title: res
- })
- });
- },
- async code() {
- let that = this;
- if (!that.account) return that.$util.Tips({
- title: '请填写手机号码'
- });
- if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.account)) return that.$util.Tips({
- title: '请输入正确的手机号码'
- });
- if (that.formItem == 2) that.type = "register";
- await registerVerify({
- phone: that.account,
- type: that.type,
- key: that.keyCode,
- code: that.codeVal
- })
- .then(res => {
- that.$dialog.success(res.msg);
- that.sendCode();
- })
- .catch(res => {
- console.log(res, 'res')
- // if (res.data.status === 402) {
- // that.codeUrl = `${VUE_APP_API_URL}/sms_captcha?key=${that.keyCode}`;
- // that.isShowCode = true;
- // }
- that.$util.Tips({
- title: res
- });
- });
- },
- }
- };
- </script>
- <style scoped>
- .code img {
- width: 100%;
- height: 100%;
- }
- </style>
|