pull/15/head
xiaozhiyong 11 months ago
parent ff0986230c
commit 74d32fa0a7
  1. 11
      AppletCode/pages/index/index.vue

@ -280,9 +280,16 @@
submit() { submit() {
this.checkFn('name'); this.checkFn('name');
this.checkFn('plateNumber'); this.checkFn('plateNumber');
if (!this.fromStyle.nameType || !this.fromStyle.plateNumberType) { if (!this.fromStyle.nameType) {
uni.showToast({ uni.showToast({
title: '还有信息没有填哦', title: '请输入姓名',
icon: 'error'
});
return
};
if (!this.fromStyle.plateNumberType) {
uni.showToast({
title: '车牌号格式有误',
icon: 'error' icon: 'error'
}); });
return return

Loading…
Cancel
Save