diff --git a/src/components/common/LocalConfig.vue b/src/components/common/LocalConfig.vue index 1873c79..2fcb5dd 100644 --- a/src/components/common/LocalConfig.vue +++ b/src/components/common/LocalConfig.vue @@ -118,6 +118,16 @@ + + + + + + + + + + @@ -292,6 +302,7 @@ export default { pacsDescFontSize: 14, //描述控件的字体大小 isHaveExternal:'N', //是否有扩展屏 (一般pacs看图可能会有副屏) hisItemRight:0, // 历史检查明细右边边距 + resultModeDisp:'flex', // flex 紧凑排列;block 一行一个 }, lisLab: { specimens: [], // 默认标本类型ID diff --git a/src/components/doctorCheck/CheckItemList.vue b/src/components/doctorCheck/CheckItemList.vue index 33cbc1e..5fbd062 100644 --- a/src/components/doctorCheck/CheckItemList.vue +++ b/src/components/doctorCheck/CheckItemList.vue @@ -86,13 +86,13 @@
选结果模板时自动添加分隔符; -
@@ -266,6 +266,7 @@ export default { pacsDescFontSize: "14px", //描述内容的字体大小 isSplitChooseResult: "Y", // 选结果时,是否自动加上分隔符 hisItemRight:0, // 历史检查明细右边边距 + resultModeDisp:'flex', // flex 紧凑排列;block 一行一个 } }, @@ -301,6 +302,7 @@ export default { if (LocalConfig?.doctorCheck?.pacsDescFontSize) this.LocalConfig.doctorCheck.pacsDescFontSize = LocalConfig.doctorCheck.pacsDescFontSize + 'px' if (LocalConfig?.doctorCheck?.isSplitChooseResult) this.LocalConfig.doctorCheck.isSplitChooseResult = LocalConfig.doctorCheck.isSplitChooseResult if (LocalConfig?.doctorCheck?.hisItemRight) this.LocalConfig.doctorCheck.hisItemRight = Number(LocalConfig.doctorCheck.hisItemRight) + if (LocalConfig?.doctorCheck?.resultModeDisp) this.LocalConfig.doctorCheck.resultModeDisp = LocalConfig.doctorCheck.resultModeDisp }, //挂载完成