提交 1dd04d883aa4eefbb9d9047c520aebac4e3ea531

作者 pangy
1 个父辈 c3efc7f4

优化

@@ -1175,11 +1175,15 @@ Page({ @@ -1175,11 +1175,15 @@ Page({
1175 this.showtoast('请选择国籍'); 1175 this.showtoast('请选择国籍');
1176 return 1176 return
1177 } 1177 }
1178 - if (this.data.hasOtherCard && !this.data.firstEntryDate.datelong) { 1178 + if (this.data.taxpayerTypeData.selected.length < 1) {
  1179 + this.showtoast('请选择纳税人类型');
  1180 + return
  1181 + }
  1182 + if (this.data.hasOtherCard && !this.data.firstEntryDate.selected) {
1179 this.showtoast('请选择首次入境时间'); 1183 this.showtoast('请选择首次入境时间');
1180 return 1184 return
1181 } 1185 }
1182 - if (this.data.hasOtherCard && !this.data.predictLeaveDate.datelong) { 1186 + if (this.data.hasOtherCard && !this.data.predictLeaveDate.selected) {
1183 this.showtoast('请选择预计离境时间'); 1187 this.showtoast('请选择预计离境时间');
1184 return 1188 return
1185 } 1189 }
@@ -1452,7 +1456,8 @@ Page({ @@ -1452,7 +1456,8 @@ Page({
1452 wx.showToast({ 1456 wx.showToast({
1453 title: str, 1457 title: str,
1454 duration: 2000, 1458 duration: 2000,
1455 - image: '/images/error.png' 1459 + icon:'none'
  1460 + // image: '/images/error.png'
1456 }) 1461 })
1457 }, 1462 },
1458 1463
注册登录 后发表评论