科室病种
This commit is contained in:
parent
6a78d9fcd0
commit
1733738a9f
@ -421,7 +421,6 @@
|
|||||||
placeholder="请选择"
|
placeholder="请选择"
|
||||||
style="width: 205px"
|
style="width: 205px"
|
||||||
@change="changeparentDepartment"
|
@change="changeparentDepartment"
|
||||||
|
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in optionsparentDepartment"
|
v-for="item in optionsparentDepartment"
|
||||||
@ -573,9 +572,7 @@ import {
|
|||||||
import { agencyList, getAgencytype } from "@/api/system/agency";
|
import { agencyList, getAgencytype } from "@/api/system/agency";
|
||||||
import { getToken } from "@/utils/auth";
|
import { getToken } from "@/utils/auth";
|
||||||
import { listSubdivision } from "@/api/system/subdivision";
|
import { listSubdivision } from "@/api/system/subdivision";
|
||||||
import {
|
import { listCompare } from "@/api/system/compare";
|
||||||
listCompare,
|
|
||||||
} from "@/api/system/compare";
|
|
||||||
export default {
|
export default {
|
||||||
name: "Department",
|
name: "Department",
|
||||||
data() {
|
data() {
|
||||||
@ -726,8 +723,8 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
changeparentDepartment(e) {
|
changeparentDepartment(e) {
|
||||||
this.form.parentDepartmentId=e
|
this.form.parentDepartmentId = e;
|
||||||
console.log(e)
|
console.log(e);
|
||||||
},
|
},
|
||||||
/** 查询标准科室对照信息列表 */
|
/** 查询标准科室对照信息列表 */
|
||||||
infocompare() {
|
infocompare() {
|
||||||
@ -771,13 +768,11 @@ console.log(e)
|
|||||||
console.log(e, "78");
|
console.log(e, "78");
|
||||||
this.form.agencyId = e[e.length - 1];
|
this.form.agencyId = e[e.length - 1];
|
||||||
const arr = this.$refs["cascader"].getCheckedNodes()[0].pathLabels;
|
const arr = this.$refs["cascader"].getCheckedNodes()[0].pathLabels;
|
||||||
this.form.agencyName=arr.slice(-1).join(',')
|
this.form.agencyName = arr.slice(-1).join(",");
|
||||||
|
|
||||||
console.log(this.form.agencyName);
|
console.log(this.form.agencyName);
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
changeagencyCategoryId(e) {
|
changeagencyCategoryId(e) {
|
||||||
this.form.parentDepartmentId = e[e.length - 1];
|
this.form.parentDepartmentId = e[e.length - 1];
|
||||||
},
|
},
|
||||||
@ -925,7 +920,7 @@ console.log(e)
|
|||||||
const id = row.id || this.ids;
|
const id = row.id || this.ids;
|
||||||
getDepartment(id).then((response) => {
|
getDepartment(id).then((response) => {
|
||||||
this.form = response.data;
|
this.form = response.data;
|
||||||
this.form.parentDepartmentName=response.data.parentDepartmentName
|
this.form.parentDepartmentName = response.data.parentDepartmentName;
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "修改科室信息";
|
this.title = "修改科室信息";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -179,21 +179,6 @@
|
|||||||
align="center"
|
align="center"
|
||||||
prop="diseaseTypeName"
|
prop="diseaseTypeName"
|
||||||
/>
|
/>
|
||||||
<!-- <el-table-column
|
|
||||||
label="病种代码"
|
|
||||||
align="center"
|
|
||||||
prop="diseaseTypeCode"
|
|
||||||
/> -->
|
|
||||||
<el-table-column
|
|
||||||
label="对应诊断信息"
|
|
||||||
align="center"
|
|
||||||
prop="diagnosisInfo"
|
|
||||||
/>
|
|
||||||
<!-- <el-table-column
|
|
||||||
label="病种概述"
|
|
||||||
align="center"
|
|
||||||
prop="diseaseTypeRemark"
|
|
||||||
/> -->
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="操作"
|
label="操作"
|
||||||
align="center"
|
align="center"
|
||||||
@ -230,7 +215,7 @@
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- 添加或修改科室病种信息对话框 -->
|
<!-- 添加或修改科室病种信息对话框 -->
|
||||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
||||||
<el-form
|
<el-form
|
||||||
ref="form"
|
ref="form"
|
||||||
:model="form"
|
:model="form"
|
||||||
@ -285,19 +270,20 @@
|
|||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item label="对应诊断信息" prop="diagnosisInfo">
|
<el-form-item label="对应诊断信息" prop="diagnosisInfo">
|
||||||
<el-input
|
<el-input
|
||||||
style="width: 250px"
|
type="textarea"
|
||||||
|
style="width: 400px"
|
||||||
v-model="form.diagnosisInfo"
|
v-model="form.diagnosisInfo"
|
||||||
placeholder="请输入对应诊断信息"
|
placeholder="请输入对应诊断信息"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
plain
|
plain
|
||||||
|
|
||||||
@click="handleImport"
|
@click="handleImport"
|
||||||
v-hasPermi="['system:person:importStationPerson']"
|
v-hasPermi="['system:person:importStationPerson']"
|
||||||
>导入</el-button
|
>导入</el-button
|
||||||
>
|
> -->
|
||||||
<!-- <el-form-item label="病种概述" prop="diseaseTypeRemark">
|
<!-- <el-form-item label="病种概述" prop="diseaseTypeRemark">
|
||||||
<el-input v-model="form.diseaseTypeRemark" placeholder="请输入病种概述" />
|
<el-input v-model="form.diseaseTypeRemark" placeholder="请输入病种概述" />
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user