修改
This commit is contained in:
parent
7d5e722bd7
commit
28492d3ab8
@ -164,7 +164,7 @@
|
||||
"
|
||||
>{{ form.nurseStationItem.nurseStationName }}</el-button>
|
||||
<el-button
|
||||
@click="nurseStationshow = true"
|
||||
disabled
|
||||
v-else
|
||||
style="
|
||||
width: 208px;
|
||||
@ -177,7 +177,7 @@
|
||||
>{{ form.nurseStationItem.nurseStationName }}</el-button>
|
||||
</template>
|
||||
</el-form-item>
|
||||
<el-form-item label="护理项目分类" required>
|
||||
<el-form-item label="护理项目分类">
|
||||
<template>
|
||||
<el-button
|
||||
style="
|
||||
@ -773,10 +773,15 @@ export default {
|
||||
cancelClassifyshow() {
|
||||
this.Classifyshow = false;
|
||||
},
|
||||
//选中
|
||||
//选中或者取消选中
|
||||
choiceclassify(e) {
|
||||
this.form.nurseStationItem.nurseClassifyId = e.id;
|
||||
this.form.nurseStationItem.classifyName = e.classifyName;
|
||||
if (this.form.nurseStationItem.nurseClassifyId == e.id) {
|
||||
this.form.nurseStationItem.nurseClassifyId = null;
|
||||
this.form.nurseStationItem.classifyName = null;
|
||||
} else {
|
||||
this.form.nurseStationItem.nurseClassifyId = e.id;
|
||||
this.form.nurseStationItem.classifyName = e.classifyName;
|
||||
}
|
||||
this.Classifyshow = false;
|
||||
},
|
||||
//重置
|
||||
|
||||
Loading…
Reference in New Issue
Block a user