|
|
|
|
@ -157,7 +157,7 @@
|
|
|
|
|
</u-form-item>
|
|
|
|
|
</block>
|
|
|
|
|
<u-form-item label="手机号" labelWidth="80" prop="mobile" ref="mobile" required>
|
|
|
|
|
<u-input placeholder="请输入手机号" v-model="form.mobile"></u-input>
|
|
|
|
|
<u-input readonly placeholder="请输入手机号" v-model="form.mobile"></u-input>
|
|
|
|
|
</u-form-item>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
@ -309,7 +309,8 @@
|
|
|
|
|
},
|
|
|
|
|
onLoad(options) {
|
|
|
|
|
this.loadConfig();
|
|
|
|
|
this.loadInfo();
|
|
|
|
|
this.loadInfo();
|
|
|
|
|
this.openNoticeInfo(0);
|
|
|
|
|
if (options.currentDate) {
|
|
|
|
|
this.bcurrentDate = JSON.parse(options.currentDate);
|
|
|
|
|
this.currentDate = this.bcurrentDate;
|
|
|
|
|
@ -411,7 +412,7 @@
|
|
|
|
|
title: "请填写手机号"
|
|
|
|
|
})
|
|
|
|
|
return false;
|
|
|
|
|
} else if (!uni.$u.test.mobile(this.form.mobile)) {
|
|
|
|
|
} else if (!this.util.phoneRegex.test(this.form.mobile)) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
icon: "none",
|
|
|
|
|
title: "请正确填写手机号"
|
|
|
|
|
@ -528,7 +529,7 @@
|
|
|
|
|
if (!that.util.isValidCardID(that.formUser.idcard)) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
icon: "none",
|
|
|
|
|
title: "请正确输入身份证号"
|
|
|
|
|
title: "请正确输入身份证号1"
|
|
|
|
|
})
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
@ -539,7 +540,7 @@
|
|
|
|
|
title: "请填写手机号"
|
|
|
|
|
})
|
|
|
|
|
return false;
|
|
|
|
|
} else if (!uni.$u.test.mobile(this.formUser.mobile)) {
|
|
|
|
|
} else if (!this.util.phoneRegex.test(this.formUser.mobile)) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
icon: "none",
|
|
|
|
|
title: "请正确填写手机号"
|
|
|
|
|
|