diff --git a/public/static/testdrive.html b/public/static/testdrive.html
index bf2da25..3495cf6 100644
--- a/public/static/testdrive.html
+++ b/public/static/testdrive.html
@@ -124,11 +124,15 @@
async submitFn() {
if (this.isLoading) return;
if (!this.isAgree) {
- this.$message({ message: "请先阅读并同意隐私条款", type: "info" });
+ this.$message({ message: "请先阅读并同意隐私条款", type: "warning" });
return;
}
if (!this.userdata.name || !this.userdata.mobile) {
- this.$message({ message: "请填写姓名和电话", type: "info" });
+ this.$message({ message: "请填写姓名和电话", type: "warning" });
+ return;
+ }
+ if (/^1[3456789]\d{9}$/.test(this.userdata.mobile) === false) {
+ this.$message({ message: "请填写正确的手机号", type: "warning" });
return;
}
this.isLoading = true;