|
@@ -29,8 +29,7 @@ async function getDisList() {
|
|
|
}
|
|
|
}).then(res => {
|
|
|
store.searchPatNo = res.inpatientNo;
|
|
|
- store.searchTimes = res.admissTimes;
|
|
|
- mutation.getPatInfo();
|
|
|
+ mutation.getPatInfo(res.admissTimes);
|
|
|
})
|
|
|
}
|
|
|
</script>
|
|
@@ -40,7 +39,7 @@ async function getDisList() {
|
|
|
住院号:
|
|
|
<el-input v-model="store.searchPatNo" style="width: 120px;" clearable/>
|
|
|
<el-divider direction="vertical"/>
|
|
|
- <el-button icon="Search" type="primary" @click="mutation.getPatInfo">查询</el-button>
|
|
|
+ <el-button icon="Search" type="primary" @click="() => mutation.getPatInfo(null)">查询</el-button>
|
|
|
<el-button type="info" @click="getDisList">出院</el-button>
|
|
|
<el-button v-if="!medicalTechnology" type="danger" @click="mutation.closeDialog">关闭</el-button>
|
|
|
<el-divider direction="vertical"/>
|