import { defineComponent } from 'vue'; import { Col, Popup, Row, Image as VanImage, Loading, Field, showToast } from 'vant'; import styles from './index.module.less'; import request from '@/helpers/request'; export default defineComponent({ name: 'o-img-code', props: { value: Boolean, phone: [String, Number], type: { type: String, default: 'LOGIN' }, clientId: { type: String, default: 'cooleshow-student' }, zIndex: { type: Number, default: 2001 } }, emits: ['close', 'sendCode'], data() { const origin = window.location.origin; return { isSuffix: '/edu-app', showStatus: false, identifyingCode: null as any, code: '' }; }, mounted() { this.showStatus = this.value; this.sendImgCode(); }, watch: { value(val: any) { this.showStatus = val; }, code(val: any) { if (val.length >= 4) { this.checkVerifyLoginImage(); } } }, methods: { async sendImgCode() { const { data } = await request.get(this.isSuffix + '/open/sendImgCode', { requestType: 'form', hideLoading: true, params: { phone: this.phone } }); this.identifyingCode = data; }, async updateIdentifyingCode() { // 刷新token this.sendImgCode(); }, async checkVerifyLoginImage() { try { if ((this as any).code.length < 4) { return; } // await request.post(`/edu-app/open/verifyImgCode`, { // requestType: 'form', // hideLoading: true, // data: { // phone: this.phone, // code: this.code // } // }); // /edu-app/open/sendSms await request.post(`/edu-app/open/sendSmsVerify`, { requestType: 'form', hideLoading: true, data: { code: this.code, clientId: this.clientId, type: this.type, mobile: this.phone } }); setTimeout(() => { showToast('验证码已发送'); }, 100); this.$emit('close'); this.$emit('sendCode'); } catch { this.code = ''; setTimeout(() => { this.updateIdentifyingCode(); }, 500); } } }, render() { return ( { this.$emit('close'); }} closeable closeIcon="close">

输入图形验证码

this.updateIdentifyingCode()}> {{ loading: () => }} this.updateIdentifyingCode()}> 看不清?换一换
); } });