Browse Source

核酸检测人员信息

feature
wanggongfeng 3 years ago
parent
commit
b999e56638
  1. 14
      src/views/modules/sys/icvaccineprarmeter-add-or-update.vue

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

@ -21,7 +21,19 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="所属房屋" label-width="150px" prop="homeId">
<el-form-item v-if="dataForm.homeId === null" label="小区" label-width="150px" prop="villageName">
<el-input class="item_width_2" style="width: 200px; margin-right: 20px" clearable v-model="dataForm.villageName" placeholder="小区"></el-input>
</el-form-item>
<el-form-item v-if="dataForm.homeId === null" label="楼号" label-width="150px" prop="buildName">
<el-input class="item_width_2" style="width: 200px; margin-right: 20px" clearable v-model="dataForm.buildName" placeholder="楼号"></el-input>
</el-form-item>
<el-form-item v-if="dataForm.homeId === null" label="单元号" label-width="150px" prop="unitName">
<el-input class="item_width_2" style="width: 200px; margin-right: 20px" clearable v-model="dataForm.unitName" placeholder="单元号"></el-input>
</el-form-item>
<el-form-item v-if="dataForm.homeId === null" label="房号" label-width="150px" prop="homeName">
<el-input class="item_width_2" style="width: 200px; margin-right: 20px" clearable v-model="dataForm.homeName" placeholder="房号"></el-input>
</el-form-item>
<el-form-item v-if="dataForm.homeId !== null" label="所属房屋" label-width="150px" prop="homeId">
<el-select
v-model.trim="dataForm.villageId"
placeholder="请选择小区"

Loading…
Cancel
Save