|
|
|
@ -770,7 +770,7 @@ |
|
|
|
></el-table-column> |
|
|
|
<el-table-column label="诊断" width="200"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ getChangeDiagnosis(scope.row.diagnosisId) }} |
|
|
|
{{ dddw(diagnosisId, "id", scope.row.diagnosisId, "displayName") }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="小结前加名称" width="120"> |
|
|
|
@ -1440,7 +1440,7 @@ import { |
|
|
|
import { unitlist,instrumentlist } from "@/request/systemapi"; |
|
|
|
import Sortable from "sortablejs"; |
|
|
|
import { getapi, postapi, putapi, deletapi } from "@/api/api"; |
|
|
|
import { deepCopy } from "../../utlis/proFunc"; |
|
|
|
import { deepCopy,dddw } from "../../utlis/proFunc"; |
|
|
|
import ReferenceRange from "../../components/itemSet/ReferenceRange.vue"; |
|
|
|
import { mapState, mapActions } from "vuex"; |
|
|
|
export default { |
|
|
|
@ -1836,7 +1836,7 @@ export default { |
|
|
|
...mapState(["window","dict"]), |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
|
|
|
|
dddw,deepCopy, |
|
|
|
dictInit(){ |
|
|
|
// 获取诊断信息 |
|
|
|
postapi("/api/app/Diagnosis/GetSimpleList").then((res) => { |
|
|
|
@ -2531,14 +2531,6 @@ export default { |
|
|
|
this.expandParents(node.parent); |
|
|
|
} |
|
|
|
}, |
|
|
|
getChangeDiagnosis(e) { |
|
|
|
for (var i = 0; i < this.diagnosisId.length; i++) { |
|
|
|
if (this.diagnosisId[i].id == e) { |
|
|
|
//dictValue,dictLabel保持和上面定义一致 |
|
|
|
return this.diagnosisId[i].displayName; |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
getChangeResult(e) { |
|
|
|
for (var i = 0; i < this.resultStatusId.length; i++) { |
|
|
|
if (this.resultStatusId[i].id == e) { |
|
|
|
|