|
@@ -18,7 +18,8 @@
|
18
|
18
|
<div style="margin-bottom: 10px;">门诊号:{{hisPatient.number?hisPatient.number:""}}</div>
|
19
|
19
|
<div style="margin-bottom: 10px;">科室:{{item.info?getDepart(item.info.departments):''}}</div>
|
20
|
20
|
<div style="margin-bottom: 10px;">医保卡号:{{item.hisPatient.number?item.hisPatient.number:""}}</div>
|
21
|
|
- <div style="margin-bottom: 10px;">电话:{{item.patient.phone}}</div>
|
|
21
|
+ <div style="margin-bottom: 10px;" v-if="org_id != 10188">电话:{{item.patient.phone}}</div>
|
|
22
|
+ <div style="margin-bottom: 10px;" v-else>日期:{{getTime(item.ctime)?getTime(item.ctime):""}}</div>
|
22
|
23
|
<div>地址:{{item.patient.home_address}}</div>
|
23
|
24
|
<div style="display:flex;width:50%;">临床诊断:{{getDiagnosis(item.info.diagnosis)}}</div>
|
24
|
25
|
</div>
|
|
@@ -43,11 +44,15 @@
|
43
|
44
|
<div style="text-align:center;" >(以下空白)</div>
|
44
|
45
|
|
45
|
46
|
</div>
|
46
|
|
- <div class="doctorBox">
|
|
47
|
+ <div class="doctorBox" v-if="org_id != 10188">
|
47
|
48
|
<p>医师:{{item.doctor?item.doctor:""}}</p>
|
48
|
49
|
<p>日期:{{getTime(item.ctime)?getTime(item.ctime):""}}</p>
|
49
|
50
|
</div>
|
50
|
|
- <div class="actionBar">
|
|
51
|
+ <div class="doctorBox" v-else>
|
|
52
|
+ <p>药师:</p>
|
|
53
|
+ <p>医师:{{item.doctor?item.doctor:""}}</p>
|
|
54
|
+ </div>
|
|
55
|
+ <div class="actionBar" v-if="org_id != 10188">
|
51
|
56
|
<!-- <p>审核:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
|
52
|
57
|
<p>配对:</p>
|
53
|
58
|
<p>核对:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
|
|
@@ -60,6 +65,13 @@
|
60
|
65
|
<p>发药:</p>
|
61
|
66
|
<p>药费:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):0}}元</p>
|
62
|
67
|
</div>
|
|
68
|
+ <div class="actionBar" v-else>
|
|
69
|
+ <p style="visibility: hidden;">审核:</p>
|
|
70
|
+ <p style="visibility: hidden;">配对:</p>
|
|
71
|
+ <p style="visibility: hidden;">核对:</p>
|
|
72
|
+ <p style="visibility: hidden;">发药:</p>
|
|
73
|
+ <p>药费:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):0}}元</p>
|
|
74
|
+ </div>
|
63
|
75
|
<div style="page-break-after:always"></div>
|
64
|
76
|
</div>
|
65
|
77
|
</div>
|
|
@@ -92,6 +104,7 @@ export default {
|
92
|
104
|
projectList:[],
|
93
|
105
|
orgname:"",
|
94
|
106
|
diagnoses:[],
|
|
107
|
+ org_id: 0
|
95
|
108
|
}
|
96
|
109
|
},
|
97
|
110
|
methods:{
|
|
@@ -265,7 +278,7 @@ export default {
|
265
|
278
|
this.getHisPatientDetail()
|
266
|
279
|
var xtuser = this.$store.getters.xt_user;
|
267
|
280
|
this.orgname = xtuser.org.org_name;
|
268
|
|
-
|
|
281
|
+ this.org_id = xtuser.org.id
|
269
|
282
|
},
|
270
|
283
|
watch:{
|
271
|
284
|
ids:function(val){
|