病例库-问题修复

main
ysn 6 days ago
parent 6ad7dbad6e
commit 6d3ebd0bb7
  1. 9
      src/views/cases/detail.vue

@ -3,7 +3,7 @@
<el-row :gutter="10" class="card-row"> <el-row :gutter="10" class="card-row">
<!-- 左侧影像文件 --> <!-- 左侧影像文件 -->
<el-col :span="3"> <el-col :span="3">
<el-card class="left-card"> <el-card class="left-card" shadow="never">
<div slot="header" class="card-header"> <div slot="header" class="card-header">
<span>超声影像</span> <span>超声影像</span>
<el-button <el-button
@ -67,7 +67,7 @@
</el-col> </el-col>
<!-- 中间报告表单 --> <!-- 中间报告表单 -->
<el-col :span="17"> <el-col :span="17">
<el-card class="center-card"> <el-card class="center-card" shadow="never">
<div slot="header" class="card-header"> <div slot="header" class="card-header">
<span class="status-text"> <span class="status-text">
病例状态 病例状态
@ -653,7 +653,6 @@
placeholder="请选择检查部位" placeholder="请选择检查部位"
filterable filterable
clearable clearable
pop
> >
<el-option-group v-for="group in partIdList" :key="group.id"> <el-option-group v-for="group in partIdList" :key="group.id">
<el-option <el-option
@ -841,7 +840,7 @@ export default {
templateForm: {}, templateForm: {},
newTemplateForm: { newTemplateForm: {
id: null, id: null,
type: "abdomen-liver", part_id: undefined,
title: "", title: "",
text_comment: "", text_comment: "",
conclusion: "", conclusion: "",
@ -1227,7 +1226,7 @@ export default {
}, },
// -/ // -/
openTemplateDialog(form) { openTemplateDialog(form) {
this.newTemplateForm = { ...form, tpl_id: form.id }; this.newTemplateForm = { ...form, tpl_id: form.id || "",part_id:form.part_id || "" };
this.templateDialogOpen = true; this.templateDialogOpen = true;
this.loadTemplateTree(); this.loadTemplateTree();
}, },

Loading…
Cancel
Save