From 4c72a02669b980bb65c4492e4777b8c6c3a20237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E6=9C=9D=E4=BC=9F?= Date: Thu, 14 Nov 2024 16:07:23 +0800 Subject: [PATCH] init --- public/static/testdrive.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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;