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' } }, emits: ['close', 'sendCode'], data() { const origin = window.location.origin; return { isSuffix: '/api-web', showStatus: false, identifyingCode: origin + '/api-web/code/getLoginImage?phone=' + this.phone, code: '' }; }, mounted() { this.showStatus = this.value; }, watch: { value(val: any) { this.showStatus = val; }, code(val: any) { if (val.length >= 4) { this.checkVerifyLoginImage(); } } }, methods: { async updateIdentifyingCode() { // 刷新token const origin = window.location.origin; this.identifyingCode = `${origin}/api-web/code/getLoginImage?phone=${ this.phone }&token=${Math.random()}`; }, async checkVerifyLoginImage() { try { if ((this as any).code.length < 4) { return; } // await request.post(`${this.isSuffix}/code/verifyLoginImage`, { // requestType: 'form', // hideLoading: true, // data: { // phone: this.phone, // code: this.code // } // }); // await request.post(`${this.isSuffix}/code/sendSms`, { // requestType: 'form', // hideLoading: true, // data: { // mobile: this.phone // } // }); await request.post(`${this.isSuffix}/code/sendSmsCode`, { requestType: 'form', hideLoading: true, data: { mobile: this.phone, code: this.code } }); setTimeout(() => { showToast('验证码已发送'); }, 100); this.$emit('close'); this.$emit('sendCode'); } catch { this.code = ''; this.updateIdentifyingCode(); } } }, render() { return ( { this.$emit('close'); }} closeable closeIcon="close">

输入图形验证码

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