|
|
@@ -24,19 +24,20 @@
|
|
|
</div>
|
|
|
<!-- 病情简介 -->
|
|
|
<div class="zhenDuanBianJu">
|
|
|
- 病情简介 <br />
|
|
|
- <textarea v-model="huanZheXinXi.reqComment" class="zhenDuanTextarea" readonly="value" style="height: 154px"></textarea>
|
|
|
+ 病情简介 <br/>
|
|
|
+ <textarea v-model="huanZheXinXi.reqComment" class="zhenDuanTextarea" readonly="value"
|
|
|
+ style="height: 154px"></textarea>
|
|
|
</div>
|
|
|
|
|
|
<!-- 目前主要诊断 -->
|
|
|
<div class="zhenDuanBianJu">
|
|
|
- 目前主要诊断 <br />
|
|
|
+ 目前主要诊断 <br/>
|
|
|
<textarea v-model="huanZheXinXi.hzZd" class="zhenDuanTextarea" readonly style="height: 50px"></textarea>
|
|
|
</div>
|
|
|
|
|
|
<!-- 会诊目的 -->
|
|
|
<div class="zhenDuanBianJu">
|
|
|
- 会诊目的 <br />
|
|
|
+ 会诊目的 <br/>
|
|
|
<textarea v-model="huanZheXinXi.hzMd" class="zhenDuanTextarea" readonly style="height: 50px"></textarea>
|
|
|
</div>
|
|
|
<div class="qingQiuHuiZhenXinXi">
|
|
|
@@ -50,21 +51,23 @@
|
|
|
<!-- 会诊意见 -->
|
|
|
<div class="zhenDuanBianJu">
|
|
|
会诊意见
|
|
|
- <br />
|
|
|
+ <br/>
|
|
|
<textarea
|
|
|
- v-model="huanZheXinXi.hzComment"
|
|
|
- :readonly="laiYuan === 2 ? 'readonly' : false"
|
|
|
- autoHeight="true"
|
|
|
- class="zhenDuanTextarea"
|
|
|
- maxlength="1100"
|
|
|
- onkeydown="if(event.keyCode === 13)event.returnValue = false;"
|
|
|
- style="height: 329px"
|
|
|
+ v-model="huanZheXinXi.hzComment"
|
|
|
+ :readonly="laiYuan === 2 ? 'readonly' : false"
|
|
|
+ autoHeight="true"
|
|
|
+ class="zhenDuanTextarea"
|
|
|
+ maxlength="1100"
|
|
|
+ onkeydown="if(event.keyCode === 13)event.returnValue = false;"
|
|
|
+ style="height: 329px"
|
|
|
>
|
|
|
</textarea>
|
|
|
</div>
|
|
|
<div class="qingQiuHuiZhenXinXi">
|
|
|
<div class="div1">会诊科室:{{ huanZheXinXi.reqDept1 }}</div>
|
|
|
- <div class="div2">医师:{{ huanZheXinXi.hzDoctor2Name }}</div>
|
|
|
+ <div class="div2">
|
|
|
+ 医师:{{ huanZheXinXi.hzDoctor2Name ? huanZheXinXi.hzDoctor2Name : store.state.user.info.name }}
|
|
|
+ </div>
|
|
|
<div>会诊时间:{{ huanZheXinXi.hzDate }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -75,13 +78,13 @@
|
|
|
|
|
|
<script>
|
|
|
import store from '@/store'
|
|
|
-import { ref } from '@vue/reactivity'
|
|
|
-import { cptSex } from '@/utils/computed'
|
|
|
+import {ref} from '@vue/reactivity'
|
|
|
+import {cptSex} from '@/utils/computed'
|
|
|
import '@/css/hui-zhen-ji-lv-dan.css'
|
|
|
-import { computed, onMounted } from 'vue'
|
|
|
-import { getLodop, initLodop } from '@/utils/c-lodop'
|
|
|
-import { huiZhenJiLvDanCss } from '@/data/css-for-print'
|
|
|
-import { getServerDateApi } from '@/api/public-api'
|
|
|
+import {computed, onMounted} from 'vue'
|
|
|
+import {getLodop, initLodop} from '@/utils/c-lodop'
|
|
|
+import {huiZhenJiLvDanCss} from '@/data/css-for-print'
|
|
|
+import {getServerDateApi} from '@/api/public-api'
|
|
|
|
|
|
export default {
|
|
|
name: 'JieShouHuiZhenDaYing',
|
|
|
@@ -148,7 +151,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
const fanHuiXinXi = () => {
|
|
|
- cxt.emit('fanHuiXinXi', { huanZheXinXi })
|
|
|
+ cxt.emit('fanHuiXinXi', {huanZheXinXi})
|
|
|
}
|
|
|
|
|
|
onMounted(() => {
|
|
|
@@ -165,6 +168,7 @@ export default {
|
|
|
windowSize,
|
|
|
fanHuiXinXi,
|
|
|
laiYuan: props.laiYuan,
|
|
|
+ store
|
|
|
}
|
|
|
},
|
|
|
}
|