|
|
|
@ -86,13 +86,13 @@ |
|
|
|
<div style="margin-top: -10px" @contextmenu.prevent="onContextmenuTemplate"> |
|
|
|
<el-checkbox v-model="LocalConfig.doctorCheck.isSplitChooseResult" size="small" true-label="Y" |
|
|
|
false-label="N">选结果模板时自动添加分隔符;</el-checkbox> |
|
|
|
<div style=" |
|
|
|
<div :style="` |
|
|
|
overflow-y: auto; |
|
|
|
height: 300px; |
|
|
|
width: 100%; |
|
|
|
display: flex; |
|
|
|
display: ${LocalConfig.doctorCheck.resultModeDisp||'flex'}; |
|
|
|
flex-wrap: wrap; |
|
|
|
align-content: flex-start; |
|
|
|
align-content: flex-start;` |
|
|
|
"> |
|
|
|
<div v-for="item in moreResult.data" :key="item.id" style="margin: 5px; cursor: pointer" |
|
|
|
@click="clickResult(item)" @dblclick="dblclickResult(item)"> |
|
|
|
@ -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 |
|
|
|
}, |
|
|
|
|
|
|
|
//挂载完成 |
|
|
|
|