Merge commit '194ac61a' into dev
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -70,7 +70,7 @@ const payment = reactive({ | ... | @@ -70,7 +70,7 @@ const payment = reactive({ |
| 70 | "Please enter the contact phone number." | 70 | "Please enter the contact phone number." |
| 71 | ), | 71 | ), |
| 72 | }); | 72 | }); |
| 73 | if (/^[1][3,4,5,7,8][0-9]{9}$/.test(payment.form.phone)) { | 73 | if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(payment.form.phone)) { |
| 74 | return ElMessage({ | 74 | return ElMessage({ |
| 75 | type: "warning", | 75 | type: "warning", |
| 76 | message: languageFormat( | 76 | message: languageFormat( | ... | ... |
-
Please register or sign in to post a comment