|
@@ -1,372 +1,516 @@
|
1
|
1
|
<template>
|
2
|
|
- <div id='prescriptionPrint'>
|
3
|
|
- <div v-for="(item,index) in advicePrint" :key="index">
|
4
|
|
- <div id='prescription-print' class="prescription-print" style="page-break-after: always;">
|
5
|
|
- <div class="printTitle" v-if="prescriptions[index].med_type == '1111'">{{orgname}}第一类精神处方笺</div>
|
6
|
|
- <div class="printTitle" v-if="prescriptions[index].med_type == '1112'">{{orgname}}第二类精神处方笺</div>
|
7
|
|
- <div class="printTitle" v-if="prescriptions[index].med_type != '1111' && prescriptions[index].med_type != '1112'">{{orgname}}处方笺</div>
|
8
|
|
- <!--<div class="printTitle">{{orgname}}处方笺</div>-->
|
9
|
|
- <div class="infoTitle">
|
10
|
|
- <p>姓名:{{item.patient.name?item.patient.name:""}}</p>
|
11
|
|
- <p>性别:
|
12
|
|
- <span v-if="item.patient.gender == 1">男</span>
|
13
|
|
- <span v-if="item.patient.gender == 2">女</span>
|
14
|
|
- </p>
|
15
|
|
- <p>年龄:{{getAge(item.patient)?getAge(item.patient):""}}岁</p>
|
|
2
|
+ <div id="prescriptionPrint">
|
|
3
|
+ <div v-for="(item, index) in advicePrint" :key="index">
|
|
4
|
+ <div
|
|
5
|
+ id="prescription-print"
|
|
6
|
+ class="prescription-print"
|
|
7
|
+ style="page-break-after: always"
|
|
8
|
+ >
|
|
9
|
+ <div class="printTitle" v-if="prescriptions[index].med_type == '1111'">
|
|
10
|
+ {{ orgname }}第一类精神处方笺
|
|
11
|
+ </div>
|
|
12
|
+ <div class="printTitle" v-if="prescriptions[index].med_type == '1112'">
|
|
13
|
+ {{ orgname }}第二类精神处方笺
|
|
14
|
+ </div>
|
|
15
|
+ <div
|
|
16
|
+ class="printTitle"
|
|
17
|
+ v-if="
|
|
18
|
+ prescriptions[index].med_type != '1111' &&
|
|
19
|
+ prescriptions[index].med_type != '1112'
|
|
20
|
+ "
|
|
21
|
+ >
|
|
22
|
+ {{ orgname }}处方笺
|
|
23
|
+ </div>
|
|
24
|
+ <!--<div class="printTitle">{{orgname}}处方笺</div>-->
|
|
25
|
+ <div class="infoTitle">
|
|
26
|
+ <p>姓名:{{ item.patient.name ? item.patient.name : "" }}</p>
|
|
27
|
+ <p>
|
|
28
|
+ 性别:
|
|
29
|
+ <span v-if="item.patient.gender == 1">男</span>
|
|
30
|
+ <span v-if="item.patient.gender == 2">女</span>
|
|
31
|
+ </p>
|
|
32
|
+ <p>年龄:{{ getAge(item.patient) ? getAge(item.patient) : "" }}岁</p>
|
|
33
|
+ </div>
|
|
34
|
+ <div class="infoMain">
|
|
35
|
+ <div style="margin-bottom: 10px">
|
|
36
|
+ 门诊号:{{ hisPatient.number ? hisPatient.number : "" }}
|
16
|
37
|
</div>
|
17
|
|
- <div class="infoMain">
|
18
|
|
- <div style="margin-bottom: 10px;">门诊号:{{hisPatient.number?hisPatient.number:""}}</div>
|
19
|
|
- <div style="margin-bottom: 10px;">科室:{{item.info?getDepart(item.info.departments):''}}</div>
|
20
|
|
- <div style="margin-bottom: 10px;">医保卡号:{{item.hisPatient.number?item.hisPatient.number:""}}</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>
|
23
|
|
- <div>地址:{{item.patient.home_address}}</div>
|
24
|
|
- <div style="display:flex;width:50%;">临床诊断:{{getDiagnosis(item.info.diagnosis)}}</div>
|
|
38
|
+ <div style="margin-bottom: 10px">
|
|
39
|
+ 科室:{{ item.info ? getDepart(item.info.departments) : "" }}
|
25
|
40
|
</div>
|
26
|
|
- <div class="prescriptionBox">
|
27
|
|
- <div class="Rp">Rp:</div>
|
28
|
|
- <div class="drugsBox" v-for="(it,index) in item.advices" :key="index">
|
29
|
|
- <!-- <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.advice_name?it.advice_name:""}} {{it.single_dose}}{{it.single_dose_unit}} × {{it.prescribing_number}}{{it.prescribing_number_unit}}</div> -->
|
30
|
|
- <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.advice_name?it.advice_name:""}} <span v-if="it.drug.min_unit != it.drug.dose_unit">{{it.drug.dose}}{{it.drug.dose_unit}} * </span>{{it.drug.min_number}}{{it.drug.min_unit}}/{{it.drug.max_unit}} × {{it.prescribing_number}}{{it.prescribing_number_unit}}</div>
|
31
|
|
- <div style="margin-left:100px;"><span>用法:{{it.single_dose}}{{it.single_dose_unit}}</span> <span>{{it.execution_frequency}} {{it.delivery_way}} </span> <span>{{it.advice_desc}}</span></div>
|
32
|
|
- </div>
|
33
|
|
- <div class="drugsBox" v-for="(it,i) in item.additionalcharge" :key="i">
|
34
|
|
- <div class="drugsOne">{{it.item_name?it.item_name:""}}: {{it.price}}元/{{it.count}}次</div>
|
35
|
|
- </div>
|
36
|
|
-
|
37
|
|
- <div class="drugsBox" v-for="(it,index) in item.project" :key="index">
|
38
|
|
- <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.type == 2?getProjectName(it.project_id)?getProjectName(it.project_id):"":it.good_info.good_name}} {{it.single_dose}}{{it.single_dose_unit}} × {{it.count}}{{unit}}</div>
|
39
|
|
- <div style="margin-left:100px;"><span>用法:{{it.single_dose}}{{it.single_dose_unit}}</span> <span>{{it.delivery_way}}</span> <span>{{it.advice_desc}}</span></div>
|
40
|
|
- </div>
|
41
|
|
- <div class="drugsBox" v-for="(it,i) in item.additionalcharge" :key="i">
|
42
|
|
- <div class="drugsOne">{{it.project_id?it.project_id:""}}: {{it.price.toFixed(2)}}元/{{it.count}}次</div>
|
43
|
|
- </div>
|
44
|
|
- <div style="text-align:center;" >(以下空白)</div>
|
45
|
|
-
|
|
41
|
+ <div style="margin-bottom: 10px">
|
|
42
|
+ 医保卡号:{{ item.hisPatient.number ? item.hisPatient.number : "" }}
|
|
43
|
+ </div>
|
|
44
|
+ <div style="margin-bottom: 10px" v-if="org_id != 10188">
|
|
45
|
+ 电话:{{ item.patient.phone }}
|
|
46
|
+ </div>
|
|
47
|
+ <div style="margin-bottom: 10px" v-else>
|
|
48
|
+ 日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}
|
46
|
49
|
</div>
|
47
|
|
- <div class="doctorBox" v-if="org_id != 10188">
|
48
|
|
- <p>医师:{{item.doctor?item.doctor:""}}</p>
|
49
|
|
- <p>日期:{{getTime(item.ctime)?getTime(item.ctime):""}}</p>
|
|
50
|
+ <div>地址:{{ item.patient.home_address }}</div>
|
|
51
|
+ <div style="display: flex; width: 50%">
|
|
52
|
+ 临床诊断:{{ getDiagnosis(item.info.diagnosis) }}
|
|
53
|
+ </div>
|
|
54
|
+ </div>
|
|
55
|
+ <div class="prescriptionBox">
|
|
56
|
+ <div class="Rp">Rp:</div>
|
|
57
|
+ <div
|
|
58
|
+ class="drugsBox"
|
|
59
|
+ v-for="(it, index) in item.advices"
|
|
60
|
+ :key="index"
|
|
61
|
+ >
|
|
62
|
+ <!-- <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.advice_name?it.advice_name:""}} {{it.single_dose}}{{it.single_dose_unit}} × {{it.prescribing_number}}{{it.prescribing_number_unit}}</div> -->
|
|
63
|
+ <div class="drugsOne">
|
|
64
|
+ <span style="font-weight: bold">{{ index + 1 + "." }}</span
|
|
65
|
+ >{{ it.advice_name ? it.advice_name : "" }} <span
|
|
66
|
+ v-if="it.drug.min_unit != it.drug.dose_unit"
|
|
67
|
+ >{{ it.drug.dose }}{{ it.drug.dose_unit }} * </span
|
|
68
|
+ >{{ it.drug.min_number }}{{ it.drug.min_unit }}/{{
|
|
69
|
+ it.drug.max_unit
|
|
70
|
+ }} × {{ it.prescribing_number
|
|
71
|
+ }}{{ it.prescribing_number_unit }}
|
|
72
|
+ </div>
|
|
73
|
+ <div style="margin-left: 100px">
|
|
74
|
+ <span>用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
|
|
75
|
+ > <span
|
|
76
|
+ >{{ it.execution_frequency }} {{
|
|
77
|
+ it.delivery_way
|
|
78
|
+ }} </span
|
|
79
|
+ > <span>{{ it.advice_desc }}</span>
|
|
80
|
+ </div>
|
|
81
|
+ </div>
|
|
82
|
+ <div
|
|
83
|
+ class="drugsBox"
|
|
84
|
+ v-for="(it, i) in item.additionalcharge"
|
|
85
|
+ :key="i"
|
|
86
|
+ >
|
|
87
|
+ <div class="drugsOne">
|
|
88
|
+ {{ it.item_name ? it.item_name : "" }}: {{ it.price }}元/{{
|
|
89
|
+ it.count
|
|
90
|
+ }}次
|
|
91
|
+ </div>
|
|
92
|
+ </div>
|
|
93
|
+
|
|
94
|
+ <div
|
|
95
|
+ class="drugsBox"
|
|
96
|
+ v-for="(it, index) in item.project"
|
|
97
|
+ :key="index"
|
|
98
|
+ >
|
|
99
|
+ <div class="drugsOne">
|
|
100
|
+ <span style="font-weight: bold">{{ index + 1 + "." }}</span
|
|
101
|
+ >{{
|
|
102
|
+ it.type == 2
|
|
103
|
+ ? getProjectName(it.project_id)
|
|
104
|
+ ? getProjectName(it.project_id)
|
|
105
|
+ : ""
|
|
106
|
+ : it.good_info.good_name
|
|
107
|
+ }} {{ it.single_dose
|
|
108
|
+ }}{{ it.single_dose_unit }} × {{ it.count }}{{ unit }}
|
|
109
|
+ </div>
|
|
110
|
+ <div style="margin-left: 100px">
|
|
111
|
+ <span>用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
|
|
112
|
+ > <span>{{ it.delivery_way }}</span
|
|
113
|
+ > <span>{{ it.advice_desc }}</span>
|
|
114
|
+ </div>
|
50
|
115
|
</div>
|
51
|
|
- <div class="doctorBox" v-else>
|
52
|
|
- <p>药师:</p>
|
53
|
|
- <p>医师:{{item.doctor?item.doctor:""}}</p>
|
|
116
|
+ <div
|
|
117
|
+ class="drugsBox"
|
|
118
|
+ v-for="(it, i) in item.additionalcharge"
|
|
119
|
+ :key="i"
|
|
120
|
+ >
|
|
121
|
+ <div class="drugsOne">
|
|
122
|
+ {{ it.project_id ? it.project_id : "" }}: {{
|
|
123
|
+ it.price.toFixed(2)
|
|
124
|
+ }}元/{{ it.count }}次
|
|
125
|
+ </div>
|
54
|
126
|
</div>
|
55
|
|
- <div class="actionBar" v-if="org_id != 10188">
|
56
|
|
- <!-- <p>审核:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
|
|
127
|
+ <div style="text-align: center">(以下空白)</div>
|
|
128
|
+ </div>
|
|
129
|
+ <div class="doctorBox" v-if="org_id != 10188">
|
|
130
|
+ <p>
|
|
131
|
+ 医师:
|
|
132
|
+ <!-- {{ item.doctor ? item.doctor : "" }} -->
|
|
133
|
+ <span
|
|
134
|
+ style="width: 100px; display: inline-block"
|
|
135
|
+ v-if="item.creator == ''"
|
|
136
|
+ >
|
|
137
|
+ {{ item.doctor }}
|
|
138
|
+ </span>
|
|
139
|
+ <img
|
|
140
|
+ style="height: 30px"
|
|
141
|
+ :src="setAdminUserES(item.creator)"
|
|
142
|
+ alt=""
|
|
143
|
+ srcset=""
|
|
144
|
+ v-else
|
|
145
|
+ />
|
|
146
|
+ </p>
|
|
147
|
+ <p>日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}</p>
|
|
148
|
+ </div>
|
|
149
|
+ <div class="doctorBox" v-else>
|
|
150
|
+ <p>药师:</p>
|
|
151
|
+ <p>医师:{{ item.doctor ? item.doctor : "" }}</p>
|
|
152
|
+ </div>
|
|
153
|
+ <div class="actionBar" v-if="org_id != 10188">
|
|
154
|
+ <!-- <p>审核:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
|
57
|
155
|
<p>配对:</p>
|
58
|
156
|
<p>核对:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
|
59
|
157
|
<p>发药:{{getDoctor(item.advices[0].execution_staff)?getDoctor(item.advices[0].execution_staff):""}}</p>
|
60
|
158
|
<p>药费:{{getTotalOne(item.id)?getTotalOne(item.id):0}}元</p> -->
|
61
|
159
|
|
62
|
|
- <p>审核:</p>
|
63
|
|
- <p>配对:</p>
|
64
|
|
- <p>核对:</p>
|
65
|
|
- <p>发药:</p>
|
66
|
|
- <p>药费:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):0}}元</p>
|
67
|
|
-<!-- <p>药费:466.2元</p>-->
|
68
|
|
-
|
69
|
|
- </div>
|
70
|
|
- <div class="actionBar" v-else>
|
71
|
|
- <p style="visibility: hidden;">审核:</p>
|
72
|
|
- <p style="visibility: hidden;">配对:</p>
|
73
|
|
- <p style="visibility: hidden;">核对:</p>
|
74
|
|
- <p style="visibility: hidden;">发药:</p>
|
75
|
|
- <p>药费:{{getTotalOne(item.id).toFixed(2)?getTotalOne(item.id).toFixed(2):0}}元</p>
|
76
|
|
-<!-- <p>药费:551.2元</p>-->
|
77
|
|
-<!-- <p>药费:466.2元</p>-->
|
78
|
|
-
|
79
|
|
-
|
80
|
|
- </div>
|
81
|
|
- <div style="page-break-after:always"></div>
|
|
160
|
+ <p>审核:</p>
|
|
161
|
+ <p>配对:</p>
|
|
162
|
+ <p>核对:</p>
|
|
163
|
+ <p>发药:</p>
|
|
164
|
+ <p>
|
|
165
|
+ 药费:{{
|
|
166
|
+ getTotalOne(item.id).toFixed(2)
|
|
167
|
+ ? getTotalOne(item.id).toFixed(2)
|
|
168
|
+ : 0
|
|
169
|
+ }}元
|
|
170
|
+ </p>
|
|
171
|
+ <!-- <p>药费:466.2元</p>-->
|
|
172
|
+ </div>
|
|
173
|
+ <div class="actionBar" v-else>
|
|
174
|
+ <p style="visibility: hidden">审核:</p>
|
|
175
|
+ <p style="visibility: hidden">配对:</p>
|
|
176
|
+ <p style="visibility: hidden">核对:</p>
|
|
177
|
+ <p style="visibility: hidden">发药:</p>
|
|
178
|
+ <p>
|
|
179
|
+ 药费:{{
|
|
180
|
+ getTotalOne(item.id).toFixed(2)
|
|
181
|
+ ? getTotalOne(item.id).toFixed(2)
|
|
182
|
+ : 0
|
|
183
|
+ }}元
|
|
184
|
+ </p>
|
|
185
|
+ <!-- <p>药费:551.2元</p>-->
|
|
186
|
+ <!-- <p>药费:466.2元</p>-->
|
|
187
|
+ </div>
|
|
188
|
+ <div style="page-break-after: always"></div>
|
82
|
189
|
</div>
|
83
|
190
|
</div>
|
84
|
|
-
|
85
|
191
|
</div>
|
86
|
|
-
|
87
|
|
-
|
88
|
192
|
</template>
|
89
|
193
|
<script>
|
90
|
|
-import { jsGetAge, uParseTime } from '@/utils/tools'
|
91
|
|
-import {getAllDoctorList,getPrescriptionPrint,getHisPatientDetail} from "@/api/project/project"
|
92
|
|
-import {getInitData} from "@/api/his/his"
|
|
194
|
+import { jsGetAge, uParseTime } from "@/utils/tools";
|
|
195
|
+import {
|
|
196
|
+ getAllDoctorList,
|
|
197
|
+ getPrescriptionPrint,
|
|
198
|
+ getHisPatientDetail,
|
|
199
|
+} from "@/api/project/project";
|
|
200
|
+import { getInitData } from "@/api/his/his";
|
93
|
201
|
export default {
|
94
|
|
- props:{
|
95
|
|
- patient_id:Number,
|
96
|
|
- record_date:String,
|
97
|
|
- prescription_id:Number,
|
98
|
|
- ids:String
|
|
202
|
+ props: {
|
|
203
|
+ patient_id: Number,
|
|
204
|
+ record_date: String,
|
|
205
|
+ prescription_id: Number,
|
|
206
|
+ ids: String,
|
|
207
|
+ },
|
|
208
|
+ data() {
|
|
209
|
+ return {
|
|
210
|
+ doctorList: [],
|
|
211
|
+ advicePrint: {},
|
|
212
|
+ patient: {},
|
|
213
|
+ tableData: [],
|
|
214
|
+ prescriptionInfo: [],
|
|
215
|
+ hisPatient: {},
|
|
216
|
+ department: [],
|
|
217
|
+ prescriptions: [],
|
|
218
|
+ projectList: [],
|
|
219
|
+ orgname: "",
|
|
220
|
+ diagnoses: [],
|
|
221
|
+ org_id: 0,
|
|
222
|
+ operatorMaps: {},
|
|
223
|
+ operators: [],
|
|
224
|
+ doctorList:[]
|
|
225
|
+ };
|
|
226
|
+ },
|
|
227
|
+ methods: {
|
|
228
|
+ // 电子签名
|
|
229
|
+ setAdminUserES(id) {
|
|
230
|
+ console.log(id,'oo')
|
|
231
|
+ if (id == 0) {
|
|
232
|
+ return "";
|
|
233
|
+ }
|
|
234
|
+ if (id in this.operatorMaps) {
|
|
235
|
+ return this.operatorMaps[id].url;
|
|
236
|
+ } else {
|
|
237
|
+ return "";
|
|
238
|
+ }
|
99
|
239
|
},
|
100
|
|
- data(){
|
101
|
|
- return {
|
102
|
|
- doctorList:[],
|
103
|
|
- advicePrint:{},
|
104
|
|
- patient:{},
|
105
|
|
- tableData:[],
|
106
|
|
- prescriptionInfo:[],
|
107
|
|
- hisPatient:{},
|
108
|
|
- department:[],
|
109
|
|
- prescriptions:[],
|
110
|
|
- projectList:[],
|
111
|
|
- orgname:"",
|
112
|
|
- diagnoses:[],
|
113
|
|
- org_id: 0
|
|
240
|
+ getAge(patient) {
|
|
241
|
+ var thisLen = patient.id_card_no.length;
|
|
242
|
+ var birth = "";
|
|
243
|
+ if (thisLen == 15) {
|
|
244
|
+ birth = "19" + patient.id_card_no.substr(6, 6);
|
|
245
|
+ } else {
|
|
246
|
+ birth = patient.id_card_no.substr(6, 8);
|
114
|
247
|
}
|
|
248
|
+ var births =
|
|
249
|
+ birth.substr(0, 4) +
|
|
250
|
+ "-" +
|
|
251
|
+ birth.substr(4, 2) +
|
|
252
|
+ "-" +
|
|
253
|
+ birth.substr(6, 2);
|
|
254
|
+ return jsGetAge(births, "-");
|
115
|
255
|
},
|
116
|
|
- methods:{
|
117
|
|
- getAge(patient){
|
118
|
|
- var thisLen = patient.id_card_no.length
|
119
|
|
- var birth = ''
|
120
|
|
- if (thisLen == 15) {
|
121
|
|
- birth = '19' + patient.id_card_no.substr(6, 6)
|
122
|
|
- } else {
|
123
|
|
- birth = patient.id_card_no.substr(6, 8)
|
124
|
|
- }
|
125
|
|
- var births =
|
126
|
|
- birth.substr(0, 4) +
|
127
|
|
- '-' +
|
128
|
|
- birth.substr(4, 2) +
|
129
|
|
- '-' +
|
130
|
|
- birth.substr(6, 2)
|
131
|
|
- return jsGetAge(births, '-')
|
132
|
256
|
|
133
|
|
- },
|
|
257
|
+ getAllDoctorList() {
|
|
258
|
+ getAllDoctorList().then((response) => {
|
|
259
|
+ if (response.data.state == 1) {
|
|
260
|
+ var doctor = response.data.data.doctor;
|
134
|
261
|
|
135
|
|
- getAllDoctorList(){
|
136
|
|
- getAllDoctorList().then(response=>{
|
137
|
|
- if(response.data.state == 1){
|
138
|
|
- var doctor = response.data.data.doctor
|
|
262
|
+ this.doctorList = doctor;
|
|
263
|
+ }
|
|
264
|
+ });
|
|
265
|
+ },
|
139
|
266
|
|
140
|
|
- this.doctorList = doctor
|
141
|
|
- }
|
142
|
|
- })
|
143
|
|
- },
|
|
267
|
+ getDoctor(id) {
|
|
268
|
+ var name = "";
|
|
269
|
+ for (let i = 0; i < this.doctorList.length; i++) {
|
|
270
|
+ if (id == this.doctorList[i].admin_user_id) {
|
|
271
|
+ name = this.doctorList[i].user_name;
|
|
272
|
+ }
|
|
273
|
+ }
|
|
274
|
+ return name;
|
|
275
|
+ },
|
|
276
|
+ getTime(value, temp) {
|
|
277
|
+ if (value != undefined) {
|
|
278
|
+ return uParseTime(value, temp);
|
|
279
|
+ }
|
|
280
|
+ return "";
|
|
281
|
+ },
|
|
282
|
+ getPrescriptionPrint() {
|
|
283
|
+ var params = {
|
|
284
|
+ // patient_id:this.patient_id,
|
|
285
|
+ // record_date:this.record_date,
|
|
286
|
+ // prescription_id:this.prescription_id,
|
|
287
|
+ patient_id: this.patient_id,
|
|
288
|
+ record_date: this.record_date,
|
|
289
|
+ prescription_id: this.prescription_id,
|
|
290
|
+ ids: this.ids,
|
|
291
|
+ p_type: 2,
|
|
292
|
+ };
|
|
293
|
+ console.log("params", params);
|
|
294
|
+ getPrescriptionPrint(params).then((response) => {
|
|
295
|
+ if (response.data.state == 1) {
|
|
296
|
+ var advicePrint = response.data.data.advicePrint;
|
|
297
|
+ console.log("adviceprint9999", advicePrint);
|
|
298
|
+ this.advicePrint = advicePrint;
|
|
299
|
+ this.prescriptions = advicePrint;
|
144
|
300
|
|
145
|
|
- getDoctor(id){
|
146
|
|
- var name = ""
|
147
|
|
- for(let i=0;i<this.doctorList.length;i++){
|
148
|
|
- if(id == this.doctorList[i].admin_user_id){
|
149
|
|
- name = this.doctorList[i].user_name
|
150
|
|
- }
|
|
301
|
+ this.doctorList = response.data.data.advicePrint.eles
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+ console.log("处方222222", this.prescriptions);
|
|
305
|
+ var hisPatient = response.data.data.hisPatient;
|
|
306
|
+ console.log("hisPatient", hisPatient);
|
|
307
|
+ this.hisPatient = hisPatient;
|
|
308
|
+ var projectlist = response.data.data.projectlist;
|
|
309
|
+ console.log("所有项目列表", projectlist);
|
|
310
|
+ this.projectList = projectlist;
|
151
|
311
|
}
|
152
|
|
- return name
|
153
|
|
- },
|
154
|
|
- getTime(value, temp) {
|
155
|
|
- if (value != undefined) {
|
156
|
|
- return uParseTime(value, temp)
|
|
312
|
+ });
|
|
313
|
+ },
|
|
314
|
+ getHisPatientDetail() {
|
|
315
|
+ const params = {
|
|
316
|
+ patient_id: this.patient_id,
|
|
317
|
+ };
|
|
318
|
+ getHisPatientDetail(params).then((response) => {
|
|
319
|
+ if (response.data.state == 1) {
|
|
320
|
+ var hisPatient = response.data.data.hisPatient;
|
|
321
|
+ console.log("挂号病人", hisPatient);
|
|
322
|
+ this.hisPatient = hisPatient;
|
157
|
323
|
}
|
158
|
|
- return ''
|
159
|
|
- },
|
160
|
|
- getPrescriptionPrint(){
|
161
|
|
- var params = {
|
162
|
|
- // patient_id:this.patient_id,
|
163
|
|
- // record_date:this.record_date,
|
164
|
|
- // prescription_id:this.prescription_id,
|
165
|
|
- patient_id:this.patient_id,
|
166
|
|
- record_date:this.record_date,
|
167
|
|
- prescription_id:this.prescription_id,
|
168
|
|
- ids:this.ids,
|
169
|
|
- p_type:2,
|
170
|
|
-
|
171
|
|
- }
|
172
|
|
- console.log("params",params)
|
173
|
|
- getPrescriptionPrint(params).then(response=>{
|
174
|
|
- if(response.data.state == 1){
|
175
|
|
- var advicePrint = response.data.data.advicePrint
|
176
|
|
- console.log("adviceprint9999",advicePrint)
|
177
|
|
- this.advicePrint = advicePrint
|
178
|
|
- this.prescriptions = advicePrint
|
179
|
|
- console.log("处方222222",this.prescriptions)
|
180
|
|
- var hisPatient = response.data.data.hisPatient
|
181
|
|
- console.log("hisPatient",hisPatient)
|
182
|
|
- this.hisPatient = hisPatient
|
183
|
|
- var projectlist = response.data.data.projectlist
|
184
|
|
- console.log("所有项目列表",projectlist)
|
185
|
|
- this.projectList = projectlist
|
186
|
|
- }
|
187
|
|
- })
|
188
|
|
- },
|
189
|
|
- getHisPatientDetail(){
|
190
|
|
- const params = {
|
191
|
|
- patient_id:this.patient_id
|
192
|
|
- }
|
193
|
|
- getHisPatientDetail(params).then(response=>{
|
194
|
|
- if(response.data.state == 1){
|
195
|
|
- var hisPatient = response.data.data.hisPatient
|
196
|
|
- console.log("挂号病人",hisPatient)
|
197
|
|
- this.hisPatient = hisPatient
|
198
|
|
- }
|
199
|
|
- })
|
200
|
|
- },
|
201
|
|
- getInitData(){
|
202
|
|
- getInitData().then(response=>{
|
203
|
|
- if(response.data.state == 1){
|
204
|
|
- this.department = response.data.data.department
|
205
|
|
- this.diagnoses = response.data.data.diagnose
|
206
|
|
- console.log("争端",this.diagnoses)
|
207
|
|
- }
|
208
|
|
- })
|
209
|
|
- },
|
210
|
|
- getDepart(id){
|
211
|
|
- var name = ""
|
212
|
|
- for(let i=0;i<this.department.length;i++){
|
213
|
|
- if(id == this.department[i].id){
|
214
|
|
- name = this.department[i].name
|
215
|
|
- }
|
216
|
|
- }
|
217
|
|
- return name
|
218
|
|
- },
|
|
324
|
+ });
|
|
325
|
+ },
|
|
326
|
+ getInitData() {
|
|
327
|
+ getInitData().then((response) => {
|
|
328
|
+ if (response.data.state == 1) {
|
|
329
|
+ this.department = response.data.data.department;
|
|
330
|
+ this.diagnoses = response.data.data.diagnose;
|
|
331
|
+ console.log("争端", this.diagnoses);
|
|
332
|
+ }
|
|
333
|
+ });
|
|
334
|
+ },
|
|
335
|
+ getDepart(id) {
|
|
336
|
+ var name = "";
|
|
337
|
+ for (let i = 0; i < this.department.length; i++) {
|
|
338
|
+ if (id == this.department[i].id) {
|
|
339
|
+ name = this.department[i].name;
|
|
340
|
+ }
|
|
341
|
+ }
|
|
342
|
+ return name;
|
|
343
|
+ },
|
219
|
344
|
getTotalOne(id) {
|
220
|
|
-
|
221
|
|
- var total = 0
|
222
|
|
- var addtotal = 0
|
223
|
|
- for (let i = 0; i < this.prescriptions.length; i++) {
|
224
|
|
- if(id == this.prescriptions[i].id){
|
225
|
|
- if (this.prescriptions[i].project != null) {
|
226
|
|
- for (let a = 0; a < this.prescriptions[i].project.length; a++) {
|
227
|
|
- total = total + this.prescriptions[i].project[a].price * this.prescriptions[i].project[a].count
|
228
|
|
- }
|
|
345
|
+ var total = 0;
|
|
346
|
+ var addtotal = 0;
|
|
347
|
+ for (let i = 0; i < this.prescriptions.length; i++) {
|
|
348
|
+ if (id == this.prescriptions[i].id) {
|
|
349
|
+ if (this.prescriptions[i].project != null) {
|
|
350
|
+ for (let a = 0; a < this.prescriptions[i].project.length; a++) {
|
|
351
|
+ total =
|
|
352
|
+ total +
|
|
353
|
+ this.prescriptions[i].project[a].price *
|
|
354
|
+ this.prescriptions[i].project[a].count;
|
229
|
355
|
}
|
|
356
|
+ }
|
230
|
357
|
|
231
|
|
- if (this.prescriptions[i].additionalcharge != null) {
|
232
|
|
- for (let a = 0; a < this.prescriptions[i].additionalcharge.length; a++) {
|
233
|
|
- addtotal = addtotal + this.prescriptions[i].additionalcharge[a].price * this.prescriptions[i].additionalcharge[a].count
|
234
|
|
- }
|
|
358
|
+ if (this.prescriptions[i].additionalcharge != null) {
|
|
359
|
+ for (
|
|
360
|
+ let a = 0;
|
|
361
|
+ a < this.prescriptions[i].additionalcharge.length;
|
|
362
|
+ a++
|
|
363
|
+ ) {
|
|
364
|
+ addtotal =
|
|
365
|
+ addtotal +
|
|
366
|
+ this.prescriptions[i].additionalcharge[a].price *
|
|
367
|
+ this.prescriptions[i].additionalcharge[a].count;
|
235
|
368
|
}
|
236
|
|
- addtotal = Math.floor(addtotal * 100) / 100
|
|
369
|
+ }
|
|
370
|
+ addtotal = Math.floor(addtotal * 100) / 100;
|
237
|
371
|
}
|
238
|
|
-
|
239
|
|
- }
|
|
372
|
+ }
|
240
|
373
|
|
241
|
374
|
for (let i = 0; i < this.prescriptions.length; i++) {
|
242
|
|
- if(id == this.prescriptions[i].id){
|
243
|
|
- if (this.prescriptions[i].advices != null) {
|
244
|
|
- for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
|
245
|
|
- total = total + this.prescriptions[i].advices[a].price * this.prescriptions[i].advices[a].prescribing_number
|
246
|
|
- }
|
|
375
|
+ if (id == this.prescriptions[i].id) {
|
|
376
|
+ if (this.prescriptions[i].advices != null) {
|
|
377
|
+ for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
|
|
378
|
+ total =
|
|
379
|
+ total +
|
|
380
|
+ this.prescriptions[i].advices[a].price *
|
|
381
|
+ this.prescriptions[i].advices[a].prescribing_number;
|
247
|
382
|
}
|
|
383
|
+ }
|
248
|
384
|
|
249
|
|
- if (this.prescriptions[i].additionalcharge != null) {
|
250
|
|
- for (let a = 0; a < this.prescriptions[i].additionalcharge.length; a++) {
|
251
|
|
- addtotal = addtotal + this.prescriptions[i].additionalcharge[a].price * this.prescriptions[i].additionalcharge[a].count
|
252
|
|
- }
|
|
385
|
+ if (this.prescriptions[i].additionalcharge != null) {
|
|
386
|
+ for (
|
|
387
|
+ let a = 0;
|
|
388
|
+ a < this.prescriptions[i].additionalcharge.length;
|
|
389
|
+ a++
|
|
390
|
+ ) {
|
|
391
|
+ addtotal =
|
|
392
|
+ addtotal +
|
|
393
|
+ this.prescriptions[i].additionalcharge[a].price *
|
|
394
|
+ this.prescriptions[i].additionalcharge[a].count;
|
253
|
395
|
}
|
254
|
|
- addtotal = Math.floor(addtotal * 100) / 100
|
|
396
|
+ }
|
|
397
|
+ addtotal = Math.floor(addtotal * 100) / 100;
|
255
|
398
|
}
|
256
|
|
- }
|
|
399
|
+ }
|
257
|
400
|
|
258
|
|
- return total + addtotal
|
259
|
|
- },
|
|
401
|
+ return total + addtotal;
|
|
402
|
+ },
|
260
|
403
|
|
261
|
|
- getProjectName(id){
|
262
|
|
- var project_name = ""
|
263
|
|
- for(let i=0;i<this.projectList.length;i++){
|
264
|
|
- if(id == this.projectList[i].id){
|
265
|
|
- project_name = this.projectList[i].project_name
|
266
|
|
- }
|
|
404
|
+ getProjectName(id) {
|
|
405
|
+ var project_name = "";
|
|
406
|
+ for (let i = 0; i < this.projectList.length; i++) {
|
|
407
|
+ if (id == this.projectList[i].id) {
|
|
408
|
+ project_name = this.projectList[i].project_name;
|
267
|
409
|
}
|
268
|
|
- return project_name
|
269
|
|
- },
|
270
|
|
-
|
271
|
|
- getDiagnosis(id){
|
272
|
|
- let arr = id.split(',')
|
273
|
|
- var name = ""
|
274
|
|
- for(let i=0;i<this.diagnoses.length;i++){
|
275
|
|
- if(arr.indexOf(String(this.diagnoses[i].id)) > -1){
|
276
|
|
- name += this.diagnoses[i].class_name + ' '
|
277
|
|
- }
|
278
|
|
- }
|
279
|
|
- return name
|
280
|
|
- }
|
|
410
|
+ }
|
|
411
|
+ return project_name;
|
|
412
|
+ },
|
281
|
413
|
|
282
|
|
- },
|
283
|
|
- created(){
|
284
|
|
- this.getAllDoctorList()
|
285
|
|
- this.getInitData()
|
286
|
|
- this.getPrescriptionPrint()
|
287
|
|
- this.getHisPatientDetail()
|
288
|
|
- var xtuser = this.$store.getters.xt_user;
|
289
|
|
- this.orgname = xtuser.org.org_name;
|
290
|
|
- this.org_id = xtuser.org.id
|
291
|
|
- },
|
292
|
|
- watch:{
|
293
|
|
- ids:function(val){
|
294
|
|
- this.ids = val
|
295
|
|
- this.getPrescriptionPrint()
|
296
|
|
- }
|
297
|
|
- }
|
298
|
|
-}
|
|
414
|
+ getDiagnosis(id) {
|
|
415
|
+ let arr = id.split(",");
|
|
416
|
+ var name = "";
|
|
417
|
+ for (let i = 0; i < this.diagnoses.length; i++) {
|
|
418
|
+ if (arr.indexOf(String(this.diagnoses[i].id)) > -1) {
|
|
419
|
+ name += this.diagnoses[i].class_name + " ";
|
|
420
|
+ }
|
|
421
|
+ }
|
|
422
|
+ return name;
|
|
423
|
+ },
|
|
424
|
+ },
|
|
425
|
+ created() {
|
|
426
|
+ this.getAllDoctorList();
|
|
427
|
+ this.getInitData();
|
|
428
|
+ this.getPrescriptionPrint();
|
|
429
|
+ this.getHisPatientDetail();
|
|
430
|
+ var xtuser = this.$store.getters.xt_user;
|
|
431
|
+ this.orgname = xtuser.org.org_name;
|
|
432
|
+ this.org_id = xtuser.org.id;
|
|
433
|
+ },
|
|
434
|
+ watch: {
|
|
435
|
+ ids: function (val) {
|
|
436
|
+ this.ids = val;
|
|
437
|
+ this.getPrescriptionPrint();
|
|
438
|
+ },
|
|
439
|
+ },
|
|
440
|
+};
|
299
|
441
|
</script>
|
300
|
442
|
|
301
|
443
|
|
302
|
444
|
<style lang="scss" scoped>
|
303
|
|
-.prescription-print{
|
304
|
|
- -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 60px rgba(0, 0, 0, 0.06) inset;
|
305
|
|
- -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
306
|
|
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
307
|
|
- margin-bottom: 20px;
|
308
|
|
- padding:20px 10px;
|
|
445
|
+.prescription-print {
|
|
446
|
+ -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
|
|
447
|
+ 0 0 60px rgba(0, 0, 0, 0.06) inset;
|
|
448
|
+ -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
|
|
449
|
+ 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
450
|
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
451
|
+ margin-bottom: 20px;
|
|
452
|
+ padding: 20px 10px;
|
309
|
453
|
}
|
310
|
|
-.printTitle{
|
311
|
|
- font-size: 22px;
|
312
|
|
- text-align: center;
|
313
|
|
- font-weight: bold;
|
|
454
|
+.printTitle {
|
|
455
|
+ font-size: 22px;
|
|
456
|
+ text-align: center;
|
|
457
|
+ font-weight: bold;
|
314
|
458
|
}
|
315
|
|
-.infoTitle{
|
316
|
|
- display: flex;
|
317
|
|
- border-bottom: 2px solid #000;
|
318
|
|
- margin-top:10px;
|
319
|
|
- line-height: 24px;
|
320
|
|
- padding:0 10px;
|
|
459
|
+.infoTitle {
|
|
460
|
+ display: flex;
|
|
461
|
+ border-bottom: 2px solid #000;
|
|
462
|
+ margin-top: 10px;
|
|
463
|
+ line-height: 24px;
|
|
464
|
+ padding: 0 10px;
|
321
|
465
|
}
|
322
|
|
-.infoTitle p{
|
323
|
|
- width: 200px;
|
|
466
|
+.infoTitle p {
|
|
467
|
+ width: 200px;
|
324
|
468
|
}
|
325
|
|
-.infoMain{
|
326
|
|
- display: flex;
|
327
|
|
- flex-wrap: wrap;
|
328
|
|
- border-bottom: 2px solid #000;
|
329
|
|
- padding:0 10px;
|
|
469
|
+.infoMain {
|
|
470
|
+ display: flex;
|
|
471
|
+ flex-wrap: wrap;
|
|
472
|
+ border-bottom: 2px solid #000;
|
|
473
|
+ padding: 0 10px;
|
330
|
474
|
}
|
331
|
|
-.infoMain div{
|
332
|
|
- width: 50%;
|
333
|
|
- line-height: 24px;
|
|
475
|
+.infoMain div {
|
|
476
|
+ width: 50%;
|
|
477
|
+ line-height: 24px;
|
334
|
478
|
}
|
335
|
|
-.prescriptionBox{
|
336
|
|
- padding:0 10px;
|
337
|
|
- min-height:450px;
|
|
479
|
+.prescriptionBox {
|
|
480
|
+ padding: 0 10px;
|
|
481
|
+ min-height: 450px;
|
338
|
482
|
}
|
339
|
|
-.Rp{
|
340
|
|
- font-size: 22px;
|
341
|
|
- font-weight: bold;
|
|
483
|
+.Rp {
|
|
484
|
+ font-size: 22px;
|
|
485
|
+ font-weight: bold;
|
342
|
486
|
}
|
343
|
|
-.drugsBox{
|
344
|
|
- padding-left: 40px;
|
345
|
|
- margin-bottom: 10px;
|
|
487
|
+.drugsBox {
|
|
488
|
+ padding-left: 40px;
|
|
489
|
+ margin-bottom: 10px;
|
346
|
490
|
}
|
347
|
|
-.drugsBox div{
|
348
|
|
- line-height: 20px;
|
|
491
|
+.drugsBox div {
|
|
492
|
+ line-height: 20px;
|
349
|
493
|
}
|
350
|
|
-.drugsOne{
|
351
|
|
- line-height: 24px;
|
|
494
|
+.drugsOne {
|
|
495
|
+ line-height: 24px;
|
352
|
496
|
}
|
353
|
|
-.drugsOne span{
|
354
|
|
- margin-right: 20px;
|
|
497
|
+.drugsOne span {
|
|
498
|
+ margin-right: 20px;
|
355
|
499
|
}
|
356
|
|
-.doctorBox{
|
357
|
|
- display: flex;
|
358
|
|
- justify-content: space-between;
|
359
|
|
- padding:0 10px;
|
360
|
|
- line-height: 24px;
|
361
|
|
- border-bottom: 2px solid #000;
|
|
500
|
+.doctorBox {
|
|
501
|
+ display: flex;
|
|
502
|
+ justify-content: space-between;
|
|
503
|
+ padding: 0 10px;
|
|
504
|
+ line-height: 24px;
|
|
505
|
+ border-bottom: 2px solid #000;
|
362
|
506
|
}
|
363
|
|
-.actionBar{
|
364
|
|
- display: flex;
|
365
|
|
- justify-content: space-between;
|
366
|
|
- line-height: 24px;
|
367
|
|
- padding:0 10px;
|
|
507
|
+.actionBar {
|
|
508
|
+ display: flex;
|
|
509
|
+ justify-content: space-between;
|
|
510
|
+ line-height: 24px;
|
|
511
|
+ padding: 0 10px;
|
368
|
512
|
}
|
369
|
|
-.actionBar p{
|
370
|
|
- width:150px;
|
|
513
|
+.actionBar p {
|
|
514
|
+ width: 150px;
|
371
|
515
|
}
|
372
|
516
|
</style>
|