This commit is contained in:
2024-05-08 17:03:10 +08:00
parent 5890776863
commit 5df22ee20a
2 changed files with 4 additions and 4 deletions

View File

@ -433,7 +433,7 @@
<el-button <el-button
type="primary" type="primary"
style="width: 15px; height: 15px" style="width: 15px; height: 15px"
v-if="form.departmentId == scope.row.departmentCode" v-if="form.departmentId == scope.row.id"
circle circle
@click="nurseclick(scope.row)" @click="nurseclick(scope.row)"
></el-button> ></el-button>
@ -786,7 +786,7 @@ export default {
}, },
// //
nurseclick(row) { nurseclick(row) {
this.form.departmentId = row.departmentCode; this.form.departmentId = row.id;
this.departmentName = row.departmentName; this.departmentName = row.departmentName;
this.form.diseaseTypeId = ''; this.form.diseaseTypeId = '';
this.diseaseTypeName = '请选择病种'; this.diseaseTypeName = '请选择病种';

View File

@ -418,7 +418,7 @@
<el-button <el-button
type="primary" type="primary"
style="width: 15px; height: 15px" style="width: 15px; height: 15px"
v-if="form.departmentId == scope.row.departmentCode" v-if="form.departmentId == scope.row.id"
circle circle
@click="nurseclick(scope.row)" @click="nurseclick(scope.row)"
></el-button> ></el-button>
@ -822,7 +822,7 @@ export default {
}, },
// //
nurseclick(row) { nurseclick(row) {
this.form.departmentId = row.departmentCode; this.form.departmentId = row.id;
this.departmentName = row.departmentName; this.departmentName = row.departmentName;
this.form.diseaseTypeId = ''; this.form.diseaseTypeId = '';
this.diseaseTypeName = '请选择病种'; this.diseaseTypeName = '请选择病种';