+
{{ $t('submit') }}
@@ -20,35 +26,57 @@
export default {
i18n: {
'zh-CN': {
+ code: '验证码',
phone: '手机号',
title: '校验规则',
submit: '提交',
required: '请输入手机号',
- incorrectFormat: '手机号格式错误',
+ validating: '验证中...',
+ incorrectCode: '验证码错误',
+ incorrectPhone: '手机号格式错误',
},
'en-US': {
+ code: 'Code',
phone: 'Phone',
title: 'Validate Rules',
submit: 'Submit',
- required: 'Phone is required',
- incorrectFormat: 'Incorrect format',
+ validating: 'Validating...',
+ incorrectCode: 'Incorrect code',
+ incorrectPhone: 'Incorrect phone',
},
},
data() {
return {
- value: '',
+ code: '',
+ phone: '',
};
},
created() {
- this.rules = [
- { required: true, message: this.$t('required') },
- {
- validator: val => /1\d{10}/.test(val),
- message: this.$t('incorrectFormat'),
- },
- ];
+ this.rules = {
+ phone: [
+ { required: true, message: this.$t('required') },
+ {
+ validator: val => /1\d{10}/.test(val),
+ message: this.$t('incorrectPhone'),
+ },
+ ],
+ code: [
+ {
+ validator: val =>
+ new Promise(resolve => {
+ this.$toast.loading(this.$t('validating'));
+
+ setTimeout(() => {
+ this.$toast.clear();
+ resolve(/\d{6}/.test(val));
+ }, 1000);
+ }),
+ message: this.$t('incorrectCode'),
+ },
+ ],
+ };
},
methods: {
diff --git a/src/utils/test/index.spec.js b/src/utils/test/index.spec.js
index 3c8febe42..d4a4353fd 100644
--- a/src/utils/test/index.spec.js
+++ b/src/utils/test/index.spec.js
@@ -76,14 +76,14 @@ test('raf', async () => {
cancelRaf(1);
});
-test('is-email', () => {
+test('isEmail', () => {
expect(isEmail('abc@gmail.com')).toBeTruthy();
expect(isEmail('abc@@gmail.com')).toBeFalsy();
expect(isEmail('@gmail.com')).toBeFalsy();
expect(isEmail('abc@')).toBeFalsy();
});
-test('is-mobile', () => {
+test('isMobile', () => {
expect(isMobile('13000000000')).toBeTruthy();
expect(isMobile('+8613000000000')).toBeTruthy();
expect(isMobile('8613000000000')).toBeTruthy();
@@ -91,7 +91,7 @@ test('is-mobile', () => {
expect(isMobile('abc')).toBeFalsy();
});
-test('is-number', () => {
+test('isNumeric', () => {
expect(isNumeric('1')).toBeTruthy();
expect(isNumeric('1.2')).toBeTruthy();
expect(isNumeric('1..2')).toBeFalsy();