uni-send-sms-code.vue 2.6 KB
Newer Older
芊里 已提交
1
<template>
芊里 已提交
2
	<view class="short-code-btn" hover-class="hover" @click="start">
芊里 已提交
3
		<text class="inner-text" :class="reverseNumber==0?'inner-text-active':''">{{innerText}}</text>
芊里 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
	</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);
		}
	}
	export default {
23
		name: "uni-send-sms-code",
芊里 已提交
24 25 26 27 28 29
		props: {
			/**
			 * 倒计时时长 s
			 */
			count: {
				type: [String, Number],
L
123  
linju 已提交
30
				default: 60
芊里 已提交
31 32 33 34 35 36 37
			},
			/**
			 * 手机号码
			 */
			phone: {
				type: [String, Number],
				default: ''
38 39 40 41 42 43 44 45 46
			},
			/*
				验证码类型,用于防止不同功能的验证码混用,目前支持的类型login登录、register注册、bind绑定手机、unbind解绑手机
			*/
			codeType:{
				type: String,
				default(){
					return 'login'
				}
芊里 已提交
47 48 49 50 51 52 53 54 55 56 57
			}
		},
		data() {
			return {
				reverseNumber: 0,
				reverseTimer: null
			};
		},
		computed: {
			innerText() {
				if (this.reverseNumber == 0) return '获取验证码';
DCloud_JSON's avatar
DCloud_JSON 已提交
58
				return '重新发送('+this.reverseNumber+'s)';
芊里 已提交
59 60 61 62 63 64 65
			}
		},
		created() {
			this.initClick();
		},
		methods: {
			initClick() {
芊里 已提交
66
				this.start = debounce(() => {
芊里 已提交
67
					if (this.reverseNumber != 0) return;
芊里 已提交
68 69 70
					this.sendMsg();
				})
			},
71 72 73 74 75 76 77
			sendMsg() {
				let reg_phone = /^1\d{10}$/;
				if(!reg_phone.test(this.phone))return uni.showToast({
					title: '手机号格式错误',
					icon: 'none'
				});
				
78
				this.request('uni-id-cf/sendSmsCode',
L
123  
linju 已提交
79 80
					{
						"mobile": this.phone,
DCloud_JSON's avatar
DCloud_JSON 已提交
81
						"type": this.codeType
82 83 84 85 86 87 88 89 90 91 92
					},result=>{
						console.log(result);
						uni.showToast({
							title: "短信验证码发送成功",
							icon: 'none'
						});
						this.reverseNumber = Number(this.count);
						this.getCode();
						this.$emit('getCode');
					}
				)
芊里 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
			},
			getCode() {
				if (this.reverseNumber == 0) {
					clearTimeout(this.reverseTimer);
					this.reverseTimer = null;
					return;
				}
				this.reverseNumber--;
				this.reverseTimer = setTimeout(() => {
					this.getCode();
				}, 1000)
			}
		}
	}
</script>

芊里 已提交
109
<style scoped>
芊里 已提交
110 111
	.short-code-btn {
		width: 200rpx;
芊里 已提交
112 113 114 115 116 117 118
		height: 85rpx;
		/* #ifndef APP-NVUE */
		display: flex;
		/* #endif */
		justify-content: center;
		align-items: center;
	}
119 120 121
	.inner-text {
		font-size: 28rpx;
		color: #AAAAAA;
芊里 已提交
122 123 124
	}
	.inner-text-active {
		color: #007aff;
芊里 已提交
125
	}
126
</style>