diff --git a/coupon/details.html b/coupon/details.html index 01fc02b..5285880 100644 --- a/coupon/details.html +++ b/coupon/details.html @@ -462,6 +462,12 @@ let weiXinReg = /^[a-zA-Z][a-zA-Z\d_-]{5,19}$/.test(this.account); let regFlag = true; switch (Number(this.productType)) { + case 0: + /* 不做校验 */ + break; + case 99: + /* 不做校验 */ + break; case 1: regFlag = phoneReg; break; diff --git a/exchange.html b/exchange.html index 8a3c2f0..0d3c553 100644 --- a/exchange.html +++ b/exchange.html @@ -261,7 +261,9 @@ let emailsreg = /^[A-Za-z0-9\u4e00-\u9fa5\.]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/.test(this.account); let weixinreg = /^[a-zA-Z][a-zA-Z\d_-]{5,19}$/.test(this.account); let regflag = true; - if (this.productType == 1) { + if ([0, 99].includes(this.productType)) { + /* 不做校验 */ + } else if (this.productType == 1) { regflag = phonereg; } else if (this.productType == 2) { regflag = emailsreg;