服务包配置和用户添加科室
This commit is contained in:
parent
e85f7a1438
commit
b7b1c7cade
@ -733,12 +733,12 @@
|
|||||||
<!-- <el-table-column type="index" label="序号" align="center">
|
<!-- <el-table-column type="index" label="序号" align="center">
|
||||||
</el-table-column> -->
|
</el-table-column> -->
|
||||||
|
|
||||||
<el-table-column label="机构名称" align="center">
|
<el-table-column label="科室名称" align="center">
|
||||||
<template slot-scope="{ row }">
|
<template slot-scope="{ row }">
|
||||||
<span>{{ row.departmentName }}</span>
|
<span>{{ row.departmentName }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="机构编码" align="center">
|
<el-table-column label="科室编码" align="center">
|
||||||
<template slot-scope="{ row }">
|
<template slot-scope="{ row }">
|
||||||
<span>{{ row.departmentCode }}</span>
|
<span>{{ row.departmentCode }}</span>
|
||||||
</template>
|
</template>
|
||||||
@ -793,12 +793,12 @@
|
|||||||
<!-- <el-table-column type="index" label="序号" align="center">
|
<!-- <el-table-column type="index" label="序号" align="center">
|
||||||
</el-table-column> -->
|
</el-table-column> -->
|
||||||
|
|
||||||
<el-table-column label="机构名称" align="center" width="110">
|
<el-table-column label="科室名称" align="center" width="110">
|
||||||
<template slot-scope="{ row }">
|
<template slot-scope="{ row }">
|
||||||
<span>{{ row.departmentName }}</span>
|
<span>{{ row.departmentName }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="机构编码" align="center">
|
<el-table-column label="科室编码" align="center">
|
||||||
<template slot-scope="{ row }">
|
<template slot-scope="{ row }">
|
||||||
<span>{{ row.departmentCode }}</span>
|
<span>{{ row.departmentCode }}</span>
|
||||||
</template>
|
</template>
|
||||||
@ -1080,17 +1080,14 @@ export default {
|
|||||||
this.formmat.agencyName = "";
|
this.formmat.agencyName = "";
|
||||||
this.info();
|
this.info();
|
||||||
},
|
},
|
||||||
|
// 科室重置
|
||||||
addresetQuerylistdep() {
|
addresetQuerylistdep() {
|
||||||
this.formmatdep.departmentName = "";
|
this.formmatdep.departmentName = "";
|
||||||
this.infodep();
|
this.infodep();
|
||||||
},
|
},
|
||||||
// 左边选中事件
|
// 机构左边选中事件
|
||||||
handleSelectionChangenleft(selection) {
|
handleSelectionChangenleft(selection) {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
console.log(
|
|
||||||
this.$refs.multipleTable.clearSelection,
|
|
||||||
"555555555888888888"
|
|
||||||
);
|
|
||||||
if (selection.length > 1) {
|
if (selection.length > 1) {
|
||||||
this.$refs.multipleTable.clearSelection(); // 清空所有选择
|
this.$refs.multipleTable.clearSelection(); // 清空所有选择
|
||||||
this.$refs.multipleTable.toggleRowSelection(selection.pop()); // 设置选择项
|
this.$refs.multipleTable.toggleRowSelection(selection.pop()); // 设置选择项
|
||||||
@ -1098,13 +1095,11 @@ export default {
|
|||||||
});
|
});
|
||||||
|
|
||||||
this.nowSelectData = selection;
|
this.nowSelectData = selection;
|
||||||
// if( this.formlist.agencyId){
|
|
||||||
this.formlist.agencyId = selection[0].agencyId;
|
this.formlist.agencyId = selection[0].agencyId;
|
||||||
|
|
||||||
// }
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// 右边选中事件
|
// 机构右边选中事件
|
||||||
handleSelectionChangenright(selection) {
|
handleSelectionChangenright(selection) {
|
||||||
console.log(selection, "56888");
|
console.log(selection, "56888");
|
||||||
if (selection.length > 1) {
|
if (selection.length > 1) {
|
||||||
@ -1136,7 +1131,7 @@ export default {
|
|||||||
// 科室点击去左边
|
// 科室点击去左边
|
||||||
leftcontentdep() {
|
leftcontentdep() {
|
||||||
console.log(this.formlistdeps, "4578");
|
console.log(this.formlistdeps, "4578");
|
||||||
this.formlistdeps.departmentId = "";
|
// this.formlistdeps.departmentId = "";
|
||||||
editDepartment(this.formlistdeps).then((response) => {
|
editDepartment(this.formlistdeps).then((response) => {
|
||||||
if (response.code == 200) {
|
if (response.code == 200) {
|
||||||
console.log(response.code);
|
console.log(response.code);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user