提交 4d2640768a88245dc67266514df041b42f9c559d

作者 wangyu
1 个父辈 a928e4a2

优化

... ... @@ -13,7 +13,7 @@ Page({
13 13 nation: "",
14 14 id_card_no: "",
15 15 birthday:"",
16   - birthday_datelong: 0,
  16 + birthday_datelong: -1,
17 17 },
18 18
19 19 /**
... ... @@ -96,6 +96,10 @@ Page({
96 96 this.showToast("证件号码有误")
97 97 return;
98 98 }
  99 + if (!this.data.birthday || this.data.birthday.length<1){
  100 + this.showToast("请选择出生日期")
  101 + return;
  102 + }
99 103 this.goAdd(formdata)
100 104 },
101 105
... ...
注册登录 后发表评论