|
|
@@ -33,7 +33,11 @@
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="姓名" prop="name">
|
|
|
- <el-input v-model="formData.name" disabled />
|
|
|
+ <el-input v-model="formData.name" clearable @keyup.enter="queryPatientList(formData.name)" >
|
|
|
+ <template #append>
|
|
|
+ <el-button icon="Search" @click="queryPatientList(formData.name)"/>
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
@@ -78,8 +82,8 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="" prop="inpatientNoType">
|
|
|
<el-radio-group v-model="formData.inOutFlag" >
|
|
|
- <el-radio-button label="在院病人" value="0" />
|
|
|
- <el-radio-button label="出院病人" value="1" />
|
|
|
+ <el-radio-button label="在院病人" :value="0" />
|
|
|
+ <el-radio-button label="出院病人" :value="1" />
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
</el-col>
|