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