Browse Source

Merge branch 'feature/dev/vaccine_prarmeter'

dev-map-local
wanggongfeng 3 years ago
parent
commit
095e73cd98
  1. 16
      src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
  2. 1
      src/views/modules/sys/icvaccineprarmeter.vue

16
src/views/modules/sys/icvaccineprarmeter-add-or-update.vue

@ -738,6 +738,22 @@
})
return false;
}
if(this.dataForm.isVaccination === '1'){
if(this.dataForm.firstVacTime === ''){
this.$message({
type: 'warning',
message: '请选择第一次接种时间'
})
return false;
}
if(this.dataForm.firstVacSite === ''){
this.$message({
type: 'warning',
message: '请输入第一次接种地点'
})
return false;
}
}
await this.$refs['dataForm'].validate((valid) => {
if (!valid) {

1
src/views/modules/sys/icvaccineprarmeter.vue

@ -592,6 +592,7 @@ export default {
isVaccination: ''
};
this.pageNo = 1
this.getDataList()
},
//
beforeUpload(file) {

Loading…
Cancel
Save