Browse Source

增加查询条件

origin/feature/monitoring
zhangyuan 4 years ago
parent
commit
083b254143
  1. 26
      src/views/modules/epidemic/epidemicreportuserinfo.vue

26
src/views/modules/epidemic/epidemicreportuserinfo.vue

@ -82,6 +82,17 @@
placeholder="选择日期">
</el-date-picker>
</el-form-item>
<el-form-item label="特殊人群"
prop="specialCrowd">
<el-select v-model="dataForm.specialCrowd" clearable
placeholder="请选择">
<el-option v-for="item in specialCrowdOptions"
:key="item.dictValue"
:label="item.dictName"
:value="item.dictValue">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="已接种" label-width="90px"
prop="isInoculate">
<el-select v-model="dataForm.isInoculate" clearable
@ -371,6 +382,21 @@ export default {
{ dictValue: '1', dictName: '第一针' },
{ dictValue: '2', dictName: '第二针' }
],
specialCrowdOptions: [
{ dictValue: '刑满释放', dictName: '刑满释放' },
{ dictValue: '社区矫正', dictName: '社区矫正' },
{ dictValue: '精神病人', dictName: '精神病人' },
{ dictValue: '吸毒人员', dictName: '吸毒人员' },
{ dictValue: '艾滋病人', dictName: '艾滋病人' },
{ dictValue: '上访老户', dictName: '上访老户' },
{ dictValue: '涉恐人员', dictName: '涉恐人员' },
{ dictValue: '涉稳人员', dictName: '涉稳人员' },
{ dictValue: '涉师人员', dictName: '涉师人员' },
{ dictValue: '邪教人员', dictName: '邪教人员' },
{ dictValue: '涉军人员', dictName: '涉军人员' },
{ dictValue: '重点青少年', dictName: '重点青少年' },
{ dictValue: '其他', dictName: '其他' }
],
companyStateArr: [],
exportTemplate: false,
uploeadLoeading: false,

Loading…
Cancel
Save