uni-id-pages-sms-form.vue 5.5 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1 2 3 4
<template>
	<view>
		<uni-captcha :focus="focusCaptchaInput" ref="captcha" scene="send-sms-code" v-model="captcha" />
		<view class="box">
Anne_LXM's avatar
Anne_LXM 已提交
5
			<uni-easyinput :focus="focusSmsCodeInput" @blur="focusSmsCodeInput = false" type="number" class="input-box" :inputBorder="false" v-model="modelValue" maxlength="6" :clearable="false" trim="both"
DCloud_JSON's avatar
DCloud_JSON 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
				placeholder="请输入短信验证码">
			</uni-easyinput>
			<view class="short-code-btn" hover-class="hover" @click="start">
				<text class="inner-text" :class="reverseNumber==0?'inner-text-active':''">{{innerText}}</text>
			</view>
		</view>
	</view>
</template>

<script>
	function debounce(func, wait) {
		let timer;
		wait = wait || 500;
		return function() {
			let context = this;
			let args = arguments;
			if (timer) clearTimeout(timer);
			let callNow = !timer;
			timer = setTimeout(() => {
				timer = null;
			}, wait)
			if (callNow) func.apply(context, args);
		}
	}
	/**
C
chenruilong 已提交
31
	 * sms-form
DCloud_JSON's avatar
DCloud_JSON 已提交
32 33 34 35 36 37 38 39 40 41
	 * @description 获取短信验证码组件
	 * @tutorial https://ext.dcloud.net.cn/plugin?id=
	 * @property {Number} count 倒计时时长 s
	 * @property {String} phone 手机号码
	 * @property {String} type = [login-by-sms|reset-pwd-by-sms|bind-mobile] 	验证码类型,用于防止不同功能的验证码混用,目前支持的类型login登录、register注册、bind绑定手机、unbind解绑手机
	 * @property {false} focusCaptchaInput = [true|false] 验证码输入框是否默认获取焦点
	 */
	export default {
		name: "uni-sms-form",
		model: {
42
			prop: 'modelValue',
DCloud_JSON's avatar
DCloud_JSON 已提交
43
			event: 'update:modelValue'
44
		},
DCloud_JSON's avatar
DCloud_JSON 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
		props: {
			event: ['update:modelValue'],
			/**
			 * 倒计时时长 s
			 */
			count: {
				type: [String, Number],
				default: 60
			},
			/**
			 * 手机号码
			 */
			phone: {
				type: [String, Number],
				default: ''
			},
			/*
				验证码类型,用于防止不同功能的验证码混用,目前支持的类型login登录、register注册、bind绑定手机、unbind解绑手机
			*/
			type: {
				type: String,
				default () {
					return 'login'
				}
			},
			/*
				验证码输入框是否默认获取焦点
			*/
			focusCaptchaInput: {
				type: Boolean,
				default () {
					return false
				}
			},
		},
		data() {
			return {
				captcha: "",
				reverseNumber: 0,
				reverseTimer: null,
				modelValue: "",
				focusSmsCodeInput:false
			};
		},
		watch: {
			captcha(value, oldValue) {
				if (value.length == 4 && oldValue.length != 4) {
					this.start()
				}
			},
			modelValue(value) {
				// TODO 兼容 vue2
				this.$emit('input', value);
				// TODO 兼容 vue3
				this.$emit('update:modelValue', value)
			}
		},
		computed: {
			innerText() {
DCloud_JSON's avatar
DCloud_JSON 已提交
104
				if (this.reverseNumber == 0) return "获取短信验证码";
DCloud_JSON's avatar
DCloud_JSON 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
				return "重新发送" + '(' + this.reverseNumber + 's)';
			}
		},
		created() {
			this.initClick();
		},
		methods: {
			getImageCaptcha(focus) {
				this.$refs.captcha.getImageCaptcha(focus)
			},
			initClick() {
				this.start = debounce(() => {
					if (this.reverseNumber != 0) return;
					this.sendMsg();
				})
			},
			sendMsg() {
				if (this.captcha.length != 4) {
					this.$refs.captcha.focusCaptchaInput = true
					return uni.showToast({
						title: '请先输入图形验证码',
126 127
						icon: 'none',
						duration: 3000
DCloud_JSON's avatar
DCloud_JSON 已提交
128 129 130 131 132
					});
				}
				let reg_phone = /^1\d{10}$/;
				if (!reg_phone.test(this.phone)) return uni.showToast({
					title: "手机号格式错误",
133 134
					icon: 'none',
					duration: 3000
DCloud_JSON's avatar
DCloud_JSON 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
				});
				const uniIdCo = uniCloud.importObject("uni-id-co", {
					customUI: true
				})
				console.log('sendSmsCode',{
					"mobile": this.phone,
					"scene": this.type,
					"captcha": this.captcha
				});
				uniIdCo.sendSmsCode({
					"mobile": this.phone,
					"scene": this.type,
					"captcha": this.captcha
				}).then(result => {
					uni.showToast({
						title: "短信验证码发送成功",
151 152
						icon: 'none',
						duration: 3000
DCloud_JSON's avatar
DCloud_JSON 已提交
153 154 155 156
					});
					this.reverseNumber = Number(this.count);
					this.getCode();
				}).catch(e => {
157
					if (e.code == "uni-id-invalid-sms-template-id") {
DCloud_JSON's avatar
DCloud_JSON 已提交
158 159 160 161 162 163 164 165 166 167 168 169
						this.modelValue = "123456"
						uni.showToast({
							title: '已启动测试模式,详情【控制台信息】',
							icon: 'none',
							duration: 3000
						});
						console.warn(e.message);
					} else {
						this.getImageCaptcha()
						this.captcha = ""
						uni.showToast({
							title: e.message,
170 171
							icon: 'none',
							duration: 3000
DCloud_JSON's avatar
DCloud_JSON 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
						});
					}
				})
			},
			getCode() {
				if (this.reverseNumber == 0) {
					clearTimeout(this.reverseTimer);
					this.reverseTimer = null;
					return;
				}
				this.reverseNumber--;
				this.reverseTimer = setTimeout(() => {
					this.getCode();
				}, 1000)
			}
		}
	}
</script>

<style lang="scss" scoped>
	.box {
		position: relative;
C
chenruilong 已提交
194
		margin-top: 10px;
DCloud_JSON's avatar
DCloud_JSON 已提交
195 196 197 198
	}

	.short-code-btn {
		padding: 0;
C
chenruilong 已提交
199
		position: absolute;
200
		top: 0;
DCloud_JSON's avatar
DCloud_JSON 已提交
201
		right: 8px;
202
		width: 260rpx;
DCloud_JSON's avatar
DCloud_JSON 已提交
203
		max-width: 100px;
DCloud_JSON's avatar
DCloud_JSON 已提交
204 205 206 207 208
		height: 44px;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		justify-content: center;
C
chenruilong 已提交
209
		align-items: center;
DCloud_JSON's avatar
DCloud_JSON 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
	}

	.inner-text {
		font-size: 14px;
		color: #AAAAAA;
	}

	.inner-text-active {
		color: #04498c;
	}

	.captcha {
		width: 350rpx;
	}

C
chenruilong 已提交
225
	.input-box {
226
		margin: 0;
DCloud_JSON's avatar
DCloud_JSON 已提交
227 228 229 230 231 232
		padding: 4px;
		background-color: #F8F8F8;
		font-size: 14px;
	}

	.box ::v-deep .content-clear-icon {
DCloud_JSON's avatar
DCloud_JSON 已提交
233
		margin-right: 110px;
DCloud_JSON's avatar
DCloud_JSON 已提交
234 235 236 237 238 239 240 241 242
	}

	.box {
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		flex-direction: row;
	}
</style>