Commit 4202adce authored by leiqingsong's avatar leiqingsong

Merge branch 'dev_lqs' into 'master'

Dev lqs

See merge request !127
parents da4e97fb 2bc3e144
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
<van-field <van-field
v-model="form.userId" v-model="form.userId"
placeholder="请输入手机号" placeholder="请输入手机号"
type="number"
maxlength="11"
:border="hasBorder" :border="hasBorder"
> >
<img <img
...@@ -152,7 +154,7 @@ export default { ...@@ -152,7 +154,7 @@ export default {
// 校验文本框必填项 // 校验文本框必填项
const _this = this; const _this = this;
if (!_this.form.userId) { if (!_this.form.userId) {
this.$toast("请输入用户名"); this.$toast("请输入手机号");
return false; return false;
} }
if (!_this.form.sms) { if (!_this.form.sms) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment