init
All checks were successful
Deploy to Production / deploy (push) Successful in 15s

This commit is contained in:
梁朝伟 2024-11-14 16:07:23 +08:00
parent 0c62637702
commit 4c72a02669

View File

@ -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;