Browse Source

人员信息模块,增加搜索条件

origin/feature/monitoring
zhangyongzhangyong 4 years ago
parent
commit
9cac821da5
  1. 30
      src/views/modules/epidemic/epidemicreportuserinfo.vue

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

@ -35,6 +35,14 @@
@keyup.native="btKeyUpMobile"
style="width:200px"></el-input>
</el-form-item>
<el-form-item label="户籍地"
label-width="90px">
<el-input v-model="dataForm.householdRegisterName"
placeholder="户籍地"
clearable
maxlength="500"
style="width:200px"></el-input>
</el-form-item>
<br/>
<el-form-item label="街道/乡镇名称"
prop="street"
@ -63,6 +71,14 @@
maxlength="20"
style="width:200px"></el-input>
</el-form-item>
<el-form-item label="现居住地名称"
label-width="100px">
<el-input v-model="dataForm.outLiveAddressName"
placeholder="现居住地名称"
clearable
maxlength="500"
style="width:200px"></el-input>
</el-form-item>
<br/>
<el-form-item label="出生年月" label-width="90px"
prop="ageStart">
@ -212,6 +228,16 @@
<el-tag v-else-if='scope.row.vaccinationState === 2' size="small" type="success">接种完成</el-tag>
</template>
</el-table-column>
<el-table-column prop="householdRegisterName"
label="户籍地"
header-align="center"
align="center"
width="150"></el-table-column>
<el-table-column prop="outLiveAddressName"
label="现居住地名称"
header-align="center"
align="center"
width="150"></el-table-column>
<el-table-column prop="street"
label="街道/乡镇"
header-align="center"
@ -353,7 +379,9 @@ export default {
idCard: '',
username: '',
mobile: '',
isInoculate: ''
isInoculate: '',
householdRegisterName: '',
outLiveAddressName: ''
},
companyArr: [],
publicPath: process.env.BASE_URL,

Loading…
Cancel
Save