Commit bd0191b7 by 刘泽奇

123

parent 8a67f3eb
...@@ -455,12 +455,12 @@ ...@@ -455,12 +455,12 @@
maxZipCode(){ maxZipCode(){
if(this.apply.zipCode.length>6){ if(this.apply.zipCode.length>6){
console.log(this.apply.zipCode); console.log(this.apply.zipCode);
this.apply.zipCode = this.apply.zipCode.substring(0,5); this.apply.zipCode = this.apply.zipCode.substring(0,6);
} }
}, },
maxPhoneNumber(){ maxPhoneNumber(){
if(this.apply.mobile.length>11){ if(this.apply.mobile.length>11){
this.apply.mobile = this.apply.mobile.substring(0,10); this.apply.mobile = this.apply.mobile.substring(0,11);
} }
}, },
getItemCode(){ getItemCode(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment