This commit is contained in:
parent
0c62637702
commit
4c72a02669
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user