|
@@ -0,0 +1,730 @@
|
|
1
|
+<template>
|
|
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 >
|
|
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 : "" }}
|
|
37
|
+ </div>
|
|
38
|
+ <div style="margin-bottom: 10px">
|
|
39
|
+ 科室:{{ item.info ? getDepart(item.info.departments) : "" }}
|
|
40
|
+ </div>
|
|
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) : "" }}
|
|
49
|
+ </div>
|
|
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>
|
|
56
|
+ <div class="prescriptionBox" >
|
|
57
|
+ <div class="Rp">Rp:</div>
|
|
58
|
+ <div
|
|
59
|
+ class="drugsBox"
|
|
60
|
+ v-for="(it, index) in advicess" :key="index"
|
|
61
|
+ :style="{'page-break-after':index==yi&&item.advices.length>5? 'always':'auto'}"
|
|
62
|
+ >
|
|
63
|
+ <!-- class="drugsBox" item.advices.length>=5 ? 'danzhang' : 'drugsBox' :style="{'page-break-after':index==yi&&item.advices.length>3? 'always':'auto'}"-->
|
|
64
|
+ <!-- <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> -->
|
|
65
|
+ <template v-if="index==yi+1&&item.advices.length>5">
|
|
66
|
+ <div style="margin: 20px 0px;">
|
|
67
|
+ <div class="infoTitle">
|
|
68
|
+ <p>姓名:{{ item.patient.name ? item.patient.name : "" }}</p>
|
|
69
|
+ <p>
|
|
70
|
+ 性别:
|
|
71
|
+ <span v-if="item.patient.gender == 1">男</span>
|
|
72
|
+ <span v-if="item.patient.gender == 2">女</span>
|
|
73
|
+ </p>
|
|
74
|
+ <p>年龄:{{ getAge(item.patient) ? getAge(item.patient) : "" }}岁</p>
|
|
75
|
+ </div>
|
|
76
|
+ <div class="infoMain">
|
|
77
|
+ <div style="margin-bottom: 10px">
|
|
78
|
+ 门诊号:{{ hisPatient.number ? hisPatient.number : "" }}
|
|
79
|
+ </div>
|
|
80
|
+ <div style="margin-bottom: 10px">
|
|
81
|
+ 科室:{{ item.info ? getDepart(item.info.departments) : "" }}
|
|
82
|
+ </div>
|
|
83
|
+ <div style="margin-bottom: 10px">
|
|
84
|
+ 医保卡号:{{ item.hisPatient.number ? item.hisPatient.number : "" }}
|
|
85
|
+ </div>
|
|
86
|
+ <div style="margin-bottom: 10px" v-if="org_id != 10188">
|
|
87
|
+ 电话:{{ item.patient.phone }}
|
|
88
|
+ </div>
|
|
89
|
+ <div style="margin-bottom: 10px" v-else>
|
|
90
|
+ 日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}
|
|
91
|
+ </div>
|
|
92
|
+ <div>地址:{{ item.patient.home_address }}</div>
|
|
93
|
+ <div style="display: flex; width: 50%">
|
|
94
|
+ 临床诊断:{{ getDiagnosis(item.info.diagnosis) }}
|
|
95
|
+ </div>
|
|
96
|
+ </div>
|
|
97
|
+ </div>
|
|
98
|
+ </template>
|
|
99
|
+ <div style="position: relative;">
|
|
100
|
+ <div class="drugsOne" :style="{'border-right':arr.length>0 && arr[0][0].groupno==it.groupno ? '1px solid black' :'none','width':'80%'}">
|
|
101
|
+ <span style="font-weight: bold" >
|
|
102
|
+ {{ index + 1 + "." }}
|
|
103
|
+ </span>
|
|
104
|
+ {{ it.advice_name ? it.advice_name : "" }}
|
|
105
|
+ <span v-if="it.drug.min_unit != it.drug.dose_unit">
|
|
106
|
+ {{ it.drug.dose }}{{ it.drug.dose_unit }} * {{ it.drug.min_number }}{{ it.drug.min_unit }}/
|
|
107
|
+ {{it.drug.max_unit}}
|
|
108
|
+ </span>
|
|
109
|
+ <div>
|
|
110
|
+ <template v-if="arr.length>0 && arr[0][0].groupno==it.groupno">
|
|
111
|
+ <div >
|
|
112
|
+ <!-- v-for="(its,indexs) in arr" :key="indexs" -->
|
|
113
|
+ <span style="margin-left: 38px;">{{arr[0][0].advice_name ? arr[0][0].advice_name : ""}}</span>
|
|
114
|
+ <span v-if="arr[0][0].drug.min_unit != arr[0][0].drug.dose_unit">
|
|
115
|
+ {{ arr[0][0].drug.dose }}{{ arr[0][0].drug.dose_unit }} * {{ arr[0][0].drug.min_number }}{{ arr[0][0].drug.min_unit }}/
|
|
116
|
+ {{arr[0][0].drug.max_unit}}
|
|
117
|
+ </span>
|
|
118
|
+ </div>
|
|
119
|
+ <div style="display: inline-block;position: absolute;left:87%;top:20px;margin-left: 10px;">
|
|
120
|
+ 共{{ it.prescribing_number}}{{ it.prescribing_number_unit }}
|
|
121
|
+ </div>
|
|
122
|
+ </template>
|
|
123
|
+ </div>
|
|
124
|
+
|
|
125
|
+ <div style="margin-left: 70px">
|
|
126
|
+ <span >用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
|
|
127
|
+ > <span
|
|
128
|
+ >{{ it.execution_frequency }} {{
|
|
129
|
+ it.delivery_way
|
|
130
|
+ }} </span> <span>{{ it.advice_desc }}</span>
|
|
131
|
+ </div>
|
|
132
|
+
|
|
133
|
+ </div>
|
|
134
|
+ <div style="display: inline-block;position: absolute;left:80%;top:10px;margin-left: 10px;">
|
|
135
|
+ × {{ it.prescribing_number}}
|
|
136
|
+ </div>
|
|
137
|
+ <div style="display: inline-block;position: absolute;left:87%;top:0px;margin-left: 10px;">
|
|
138
|
+ 共{{ it.prescribing_number}}{{ it.prescribing_number_unit }}
|
|
139
|
+ </div>
|
|
140
|
+ </div>
|
|
141
|
+ <template v-if="index==yi&&item.advices.length>5">
|
|
142
|
+ <div style="margin: 20px 0px;">
|
|
143
|
+ <div class="doctorBox" >
|
|
144
|
+ <p >
|
|
145
|
+ 医师:
|
|
146
|
+ <span
|
|
147
|
+ style="width: 100px; display: inline-block"
|
|
148
|
+ v-if="item.creator == ''"
|
|
149
|
+ >
|
|
150
|
+ {{ item.doctor }}
|
|
151
|
+ </span>
|
|
152
|
+ <span
|
|
153
|
+ style="width: 100px; display: inline-block"
|
|
154
|
+ v-else-if="doc_name != ''"
|
|
155
|
+ >
|
|
156
|
+ {{ doc_name }}
|
|
157
|
+ </span>
|
|
158
|
+ <img
|
|
159
|
+ style="height: 50px;"
|
|
160
|
+ :src="setAdminUserES(item.creator,item.doctor)"
|
|
161
|
+ alt=""
|
|
162
|
+ srcset=""
|
|
163
|
+
|
|
164
|
+ />
|
|
165
|
+ </p>
|
|
166
|
+ <p >
|
|
167
|
+ 医师: {{ item.doctor ? item.doctor : "" }}
|
|
168
|
+ </p>
|
|
169
|
+ <p>日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}</p>
|
|
170
|
+ </div>
|
|
171
|
+
|
|
172
|
+ <div class="actionBar" >
|
|
173
|
+ <p >审核、调配:</p>
|
|
174
|
+ <p >核对、发药:</p>
|
|
175
|
+ <p >
|
|
176
|
+ 药费:{{
|
|
177
|
+ getTotalOne(item.id).toFixed(2)
|
|
178
|
+ ? getTotalOne(item.id).toFixed(2)
|
|
179
|
+ : 0
|
|
180
|
+ }}元
|
|
181
|
+ </p>
|
|
182
|
+ <!-- <p>药费:551.2元</p>-->
|
|
183
|
+ <!-- <p>药费:466.2元</p>-->
|
|
184
|
+ </div>
|
|
185
|
+ </div>
|
|
186
|
+ </template>
|
|
187
|
+ </div>
|
|
188
|
+
|
|
189
|
+ <div
|
|
190
|
+ class="drugsBox"
|
|
191
|
+ v-for="(it, i) in item.additionalcharge"
|
|
192
|
+ :key="i"
|
|
193
|
+ >
|
|
194
|
+ <div class="drugsOne">
|
|
195
|
+ {{ it.item_name ? it.item_name : "" }}: {{ it.price }}元/{{
|
|
196
|
+ it.count
|
|
197
|
+ }}次
|
|
198
|
+ </div>
|
|
199
|
+ </div>
|
|
200
|
+
|
|
201
|
+ <div
|
|
202
|
+ class="drugsBox"
|
|
203
|
+ v-for="(it, index) in item.project"
|
|
204
|
+ :key="index"
|
|
205
|
+ >
|
|
206
|
+ <div class="drugsOne">
|
|
207
|
+ <span style="font-weight: bold">{{ index + 1 + "." }}</span
|
|
208
|
+ >{{
|
|
209
|
+ it.type == 2
|
|
210
|
+ ? getProjectName(it.project_id)
|
|
211
|
+ ? getProjectName(it.project_id)
|
|
212
|
+ : ""
|
|
213
|
+ : it.good_info.good_name
|
|
214
|
+ }} {{ it.single_dose
|
|
215
|
+ }}{{ it.single_dose_unit }} × {{ it.count }}{{ unit }}
|
|
216
|
+ </div>
|
|
217
|
+ <div style="margin-left: 100px">
|
|
218
|
+ <span>用法:{{ it.single_dose }}{{ it.single_dose_unit }}</span
|
|
219
|
+ > <span>{{ it.delivery_way }}</span
|
|
220
|
+ > <span>{{ it.advice_desc }}</span>
|
|
221
|
+ </div>
|
|
222
|
+ </div>
|
|
223
|
+
|
|
224
|
+ <div
|
|
225
|
+ class="drugsBox"
|
|
226
|
+ v-for="(it, i) in item.additionalcharge"
|
|
227
|
+ :key="i"
|
|
228
|
+ >
|
|
229
|
+ <div class="drugsOne">
|
|
230
|
+ {{ it.project_id ? it.project_id : "" }}: {{
|
|
231
|
+ it.price.toFixed(2)
|
|
232
|
+ }}元/{{ it.count }}次
|
|
233
|
+ </div>
|
|
234
|
+ </div>
|
|
235
|
+ <div style="text-align: center">(以下空白)</div>
|
|
236
|
+ </div>
|
|
237
|
+
|
|
238
|
+ <div class="doctorBox" v-if="org_id != 10188 && org_id != 0">
|
|
239
|
+ <p v-if="org_id == 10217 || org_id == 0">
|
|
240
|
+ 医师:
|
|
241
|
+ <span
|
|
242
|
+ style="width: 100px; display: inline-block"
|
|
243
|
+ v-if="item.creator == ''"
|
|
244
|
+ >
|
|
245
|
+ {{ item.doctor }}
|
|
246
|
+ </span>
|
|
247
|
+ <span
|
|
248
|
+ style="width: 100px; display: inline-block"
|
|
249
|
+ v-else-if="doc_name != ''"
|
|
250
|
+ >
|
|
251
|
+ {{ doc_name }}
|
|
252
|
+ </span>
|
|
253
|
+ <img
|
|
254
|
+ style="height: 50px;"
|
|
255
|
+ :src="setAdminUserES(item.creator,item.doctor)"
|
|
256
|
+ alt=""
|
|
257
|
+ srcset=""
|
|
258
|
+
|
|
259
|
+ />
|
|
260
|
+ </p>
|
|
261
|
+ <p v-else>
|
|
262
|
+ 医师: {{ item.doctor ? item.doctor : "" }}
|
|
263
|
+ </p>
|
|
264
|
+ <p>日期:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}</p>
|
|
265
|
+ </div>
|
|
266
|
+
|
|
267
|
+ <div class="doctorBoxs" style="border-bottom: 2px solid #000;" v-if="org_id == 10188 || org_id == 0">
|
|
268
|
+ <p>医师:{{ item.doctor ? item.doctor : "" }}</p>
|
|
269
|
+ </div>
|
|
270
|
+ <!-- <div class="doctorBoxtwo" v-if="org_id == 10188 || org_id == 0">
|
|
271
|
+ <p >审核、调配:</p>
|
|
272
|
+ <p >核对、发药:</p>
|
|
273
|
+ <p style="margin-right: 43px">药师:</p>
|
|
274
|
+ </div> -->
|
|
275
|
+
|
|
276
|
+ <div class="actionBar" v-if="org_id != 10188 && org_id != 0">
|
|
277
|
+ <!-- <p>审核:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
|
|
278
|
+ <p>配对:</p>
|
|
279
|
+ <p>核对:{{getDoctor(item.advices[0].checker)?getDoctor(item.advices[0].checker):""}}</p>
|
|
280
|
+ <p>发药:{{getDoctor(item.advices[0].execution_staff)?getDoctor(item.advices[0].execution_staff):""}}</p>
|
|
281
|
+ <p>药费:{{getTotalOne(item.id)?getTotalOne(item.id):0}}元</p> -->
|
|
282
|
+
|
|
283
|
+ <p>审核:</p>
|
|
284
|
+ <p>配对:</p>
|
|
285
|
+ <p>核对:</p>
|
|
286
|
+ <p>发药:</p>
|
|
287
|
+ <p>
|
|
288
|
+ 药费:{{
|
|
289
|
+ getTotalOne(item.id).toFixed(2)
|
|
290
|
+ ? getTotalOne(item.id).toFixed(2)
|
|
291
|
+ : 0
|
|
292
|
+ }}元
|
|
293
|
+ </p>
|
|
294
|
+ <!-- <p>药费:466.2元</p>-->
|
|
295
|
+ </div>
|
|
296
|
+ <div class="actionBar" v-else>
|
|
297
|
+ <p >审核、调配:</p>
|
|
298
|
+ <p >核对、发药:</p>
|
|
299
|
+ <p >
|
|
300
|
+ 药费:{{
|
|
301
|
+ getTotalOne(item.id).toFixed(2)
|
|
302
|
+ ? getTotalOne(item.id).toFixed(2)
|
|
303
|
+ : 0
|
|
304
|
+ }}元
|
|
305
|
+ </p>
|
|
306
|
+ <!-- <p>药费:551.2元</p>-->
|
|
307
|
+ <!-- <p>药费:466.2元</p>-->
|
|
308
|
+ </div>
|
|
309
|
+ <!-- </div> -->
|
|
310
|
+ </div>
|
|
311
|
+ </div>
|
|
312
|
+ </div>
|
|
313
|
+</template>
|
|
314
|
+<script>
|
|
315
|
+import { jsGetAge, uParseTime } from "@/utils/tools";
|
|
316
|
+import {
|
|
317
|
+ getAllDoctorList,
|
|
318
|
+ getPrescriptionPrint,
|
|
319
|
+ getHisPatientDetail,
|
|
320
|
+} from "@/api/project/project";
|
|
321
|
+import { getInitData } from "@/api/his/his";
|
|
322
|
+export default{
|
|
323
|
+ props: {
|
|
324
|
+ patient_id: Number,
|
|
325
|
+ record_date: String,
|
|
326
|
+ prescription_id: Number,
|
|
327
|
+ ids: String,
|
|
328
|
+ },
|
|
329
|
+ data() {
|
|
330
|
+ return {
|
|
331
|
+ doc_name:"",
|
|
332
|
+ doctorList: [],
|
|
333
|
+ advicePrint: {},
|
|
334
|
+ yi:4,
|
|
335
|
+ arr:[],
|
|
336
|
+ arrs:{},
|
|
337
|
+ advicess:[],
|
|
338
|
+ page:sessionStorage.getItem('dayin'),
|
|
339
|
+ patient: {},
|
|
340
|
+ tableData: [],
|
|
341
|
+ prescriptionInfo: [],
|
|
342
|
+ hisPatient: {},
|
|
343
|
+ department: [],
|
|
344
|
+ prescriptions: [],
|
|
345
|
+ projectList: [],
|
|
346
|
+ orgname: "",
|
|
347
|
+ diagnoses: [],
|
|
348
|
+ org_id: 0,
|
|
349
|
+ operatorMaps: {},
|
|
350
|
+ operators: [],
|
|
351
|
+ doctorList_1: [],
|
|
352
|
+ };
|
|
353
|
+ },
|
|
354
|
+ methods: {
|
|
355
|
+ // 电子签名
|
|
356
|
+ setAdminUserES(id,name) {
|
|
357
|
+ console.log(id)
|
|
358
|
+ console.log(name)
|
|
359
|
+ console.log(this.operatorMaps)
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+ if (id == 0) {
|
|
363
|
+ return "";
|
|
364
|
+ }
|
|
365
|
+ if (id in this.operatorMaps) {
|
|
366
|
+ return this.operatorMaps[id].url;
|
|
367
|
+ } else {
|
|
368
|
+ this.doc_name = name
|
|
369
|
+ return "";
|
|
370
|
+ }
|
|
371
|
+ },
|
|
372
|
+ getAge(patient) {
|
|
373
|
+ if(patient.id_card_no == "TWN001836483"){
|
|
374
|
+ return patient.age
|
|
375
|
+ }else{
|
|
376
|
+ var thisLen = patient.id_card_no.length;
|
|
377
|
+ var birth = "";
|
|
378
|
+ if (thisLen == 15) {
|
|
379
|
+ birth = "19" + patient.id_card_no.substr(6, 6);
|
|
380
|
+ } else {
|
|
381
|
+ birth = patient.id_card_no.substr(6, 8);
|
|
382
|
+ }
|
|
383
|
+ var births =
|
|
384
|
+ birth.substr(0, 4) +
|
|
385
|
+ "-" +
|
|
386
|
+ birth.substr(4, 2) +
|
|
387
|
+ "-" +
|
|
388
|
+ birth.substr(6, 2);
|
|
389
|
+ return jsGetAge(births, "-");
|
|
390
|
+
|
|
391
|
+ }
|
|
392
|
+
|
|
393
|
+ },
|
|
394
|
+
|
|
395
|
+ getAllDoctorList() {
|
|
396
|
+ getAllDoctorList().then((response) => {
|
|
397
|
+ if (response.data.state == 1) {
|
|
398
|
+ var doctor = response.data.data.doctor;
|
|
399
|
+
|
|
400
|
+ this.doctorList = doctor;
|
|
401
|
+ }
|
|
402
|
+ });
|
|
403
|
+ },
|
|
404
|
+
|
|
405
|
+ getDoctor(id) {
|
|
406
|
+ var name = "";
|
|
407
|
+ for (let i = 0; i < this.doctorList.length; i++) {
|
|
408
|
+ if (id == this.doctorList[i].admin_user_id) {
|
|
409
|
+ name = this.doctorList[i].user_name;
|
|
410
|
+ }
|
|
411
|
+ }
|
|
412
|
+ return name;
|
|
413
|
+ },
|
|
414
|
+ getTime(value, temp) {
|
|
415
|
+ if (value != undefined) {
|
|
416
|
+ return uParseTime(value, temp);
|
|
417
|
+ }
|
|
418
|
+ return "";
|
|
419
|
+ },
|
|
420
|
+ getPrescriptionPrint() {
|
|
421
|
+ var params = {
|
|
422
|
+ // patient_id:this.patient_id,
|
|
423
|
+ // record_date:this.record_date,
|
|
424
|
+ // prescription_id:this.prescription_id,
|
|
425
|
+ patient_id: this.patient_id,
|
|
426
|
+ record_date: this.record_date,
|
|
427
|
+ prescription_id: this.prescription_id,
|
|
428
|
+ ids: this.ids,
|
|
429
|
+ p_type: 2,
|
|
430
|
+ };
|
|
431
|
+ console.log("params", params);
|
|
432
|
+ getPrescriptionPrint(params).then((response) => {
|
|
433
|
+ if (response.data.state == 1) {
|
|
434
|
+ var advicePrint = response.data.data.advicePrint;
|
|
435
|
+ console.log("adviceprint9999", advicePrint);
|
|
436
|
+ this.advicePrint = advicePrint;
|
|
437
|
+ this.prescriptions = advicePrint;
|
|
438
|
+
|
|
439
|
+ this.doctorList_1 = response.data.data.eles;
|
|
440
|
+ for(let i=0;i<this.advicePrint.length;i++){
|
|
441
|
+ this.advicess=advicePrint[i].advices
|
|
442
|
+ }
|
|
443
|
+ for(let j=0;j<this.advicess.length;j++){
|
|
444
|
+ for(let x=j+1;x<this.advicess.length;x++){
|
|
445
|
+ if(this.advicess[j].groupno == this.advicess[x].groupno){
|
|
446
|
+ this.arr.push(this.advicess.splice(x,1))
|
|
447
|
+ // this.arrs=this.advicess.splice(x,1)
|
|
448
|
+ }
|
|
449
|
+ }
|
|
450
|
+ }
|
|
451
|
+ // this.merge(this.advicess)
|
|
452
|
+ // console.log('4444444',this.arrs);
|
|
453
|
+ console.log('55555555',this.arr);
|
|
454
|
+ console.log('6666666',this.advicess);
|
|
455
|
+ console.log(this.doctorList_1, "医生列表");
|
|
456
|
+ if (this.doctorList_1.length > 0) {
|
|
457
|
+ var operatorsLen = this.doctorList_1.length;
|
|
458
|
+ for (var index = 0; index < operatorsLen; index++) {
|
|
459
|
+ this.$set(
|
|
460
|
+ this.operatorMaps,
|
|
461
|
+ this.doctorList_1[index].creator,
|
|
462
|
+ this.doctorList_1[index]
|
|
463
|
+ );
|
|
464
|
+ }
|
|
465
|
+ }
|
|
466
|
+
|
|
467
|
+ console.log("处方222222", this.prescriptions);
|
|
468
|
+ var hisPatient = response.data.data.hisPatient;
|
|
469
|
+ console.log("hisPatient", hisPatient);
|
|
470
|
+ this.hisPatient = hisPatient;
|
|
471
|
+ var projectlist = response.data.data.projectlist;
|
|
472
|
+ console.log("所有项目列表", projectlist);
|
|
473
|
+ this.projectList = projectlist;
|
|
474
|
+ }
|
|
475
|
+ });
|
|
476
|
+ },
|
|
477
|
+ getHisPatientDetail() {
|
|
478
|
+ const params = {
|
|
479
|
+ patient_id: this.patient_id,
|
|
480
|
+ };
|
|
481
|
+ getHisPatientDetail(params).then((response) => {
|
|
482
|
+ if (response.data.state == 1) {
|
|
483
|
+ var hisPatient = response.data.data.hisPatient;
|
|
484
|
+ console.log("挂号病人", hisPatient);
|
|
485
|
+ this.hisPatient = hisPatient;
|
|
486
|
+ }
|
|
487
|
+ });
|
|
488
|
+ },
|
|
489
|
+ getInitData() {
|
|
490
|
+ getInitData().then((response) => {
|
|
491
|
+ if (response.data.state == 1) {
|
|
492
|
+ this.department = response.data.data.department;
|
|
493
|
+ this.diagnoses = response.data.data.diagnose;
|
|
494
|
+ console.log("争端", this.diagnoses);
|
|
495
|
+ }
|
|
496
|
+ });
|
|
497
|
+ },
|
|
498
|
+ getDepart(id) {
|
|
499
|
+ var name = "";
|
|
500
|
+ for (let i = 0; i < this.department.length; i++) {
|
|
501
|
+ if (id == this.department[i].id) {
|
|
502
|
+ name = this.department[i].name;
|
|
503
|
+ }
|
|
504
|
+ }
|
|
505
|
+ return name;
|
|
506
|
+ },
|
|
507
|
+ getTotalOne(id) {
|
|
508
|
+ var total = 0;
|
|
509
|
+ var addtotal = 0;
|
|
510
|
+ for (let i = 0; i < this.prescriptions.length; i++) {
|
|
511
|
+ if (id == this.prescriptions[i].id) {
|
|
512
|
+ if (this.prescriptions[i].project != null) {
|
|
513
|
+ for (let a = 0; a < this.prescriptions[i].project.length; a++) {
|
|
514
|
+ total =
|
|
515
|
+ total +
|
|
516
|
+ this.prescriptions[i].project[a].price *
|
|
517
|
+ this.prescriptions[i].project[a].count;
|
|
518
|
+ }
|
|
519
|
+ }
|
|
520
|
+
|
|
521
|
+ if (this.prescriptions[i].additionalcharge != null) {
|
|
522
|
+ for (
|
|
523
|
+ let a = 0;
|
|
524
|
+ a < this.prescriptions[i].additionalcharge.length;
|
|
525
|
+ a++
|
|
526
|
+ ) {
|
|
527
|
+ addtotal =
|
|
528
|
+ addtotal +
|
|
529
|
+ this.prescriptions[i].additionalcharge[a].price *
|
|
530
|
+ this.prescriptions[i].additionalcharge[a].count;
|
|
531
|
+ }
|
|
532
|
+ }
|
|
533
|
+ addtotal = Math.floor(addtotal * 100) / 100;
|
|
534
|
+ }
|
|
535
|
+ }
|
|
536
|
+
|
|
537
|
+ for (let i = 0; i < this.prescriptions.length; i++) {
|
|
538
|
+ if (id == this.prescriptions[i].id) {
|
|
539
|
+ if (this.prescriptions[i].advices != null) {
|
|
540
|
+ for (let a = 0; a < this.prescriptions[i].advices.length; a++) {
|
|
541
|
+ total =
|
|
542
|
+ total +
|
|
543
|
+ this.prescriptions[i].advices[a].price *
|
|
544
|
+ this.prescriptions[i].advices[a].prescribing_number;
|
|
545
|
+ }
|
|
546
|
+ }
|
|
547
|
+
|
|
548
|
+ if (this.prescriptions[i].additionalcharge != null) {
|
|
549
|
+ for (
|
|
550
|
+ let a = 0;
|
|
551
|
+ a < this.prescriptions[i].additionalcharge.length;
|
|
552
|
+ a++
|
|
553
|
+ ) {
|
|
554
|
+ addtotal =
|
|
555
|
+ addtotal +
|
|
556
|
+ this.prescriptions[i].additionalcharge[a].price *
|
|
557
|
+ this.prescriptions[i].additionalcharge[a].count;
|
|
558
|
+ }
|
|
559
|
+ }
|
|
560
|
+ addtotal = Math.floor(addtotal * 100) / 100;
|
|
561
|
+ }
|
|
562
|
+ }
|
|
563
|
+
|
|
564
|
+ return total + addtotal;
|
|
565
|
+ },
|
|
566
|
+
|
|
567
|
+ getProjectName(id) {
|
|
568
|
+ var project_name = "";
|
|
569
|
+ for (let i = 0; i < this.projectList.length; i++) {
|
|
570
|
+ if (id == this.projectList[i].id) {
|
|
571
|
+ project_name = this.projectList[i].project_name;
|
|
572
|
+ }
|
|
573
|
+ }
|
|
574
|
+ return project_name;
|
|
575
|
+ },
|
|
576
|
+
|
|
577
|
+ getDiagnosis(id) {
|
|
578
|
+ let arr = id.split(",");
|
|
579
|
+ var name = "";
|
|
580
|
+ for (let i = 0; i < this.diagnoses.length; i++) {
|
|
581
|
+ if (arr.indexOf(String(this.diagnoses[i].id)) > -1) {
|
|
582
|
+ name += this.diagnoses[i].class_name + " ";
|
|
583
|
+ }
|
|
584
|
+ }
|
|
585
|
+ return name;
|
|
586
|
+ },
|
|
587
|
+ merge(arrA){
|
|
588
|
+ var len=arrA.lenfth
|
|
589
|
+ // for(let j=0;j<this.advicess.length;j++){
|
|
590
|
+ // for(let x=j+1;x<this.advicess.length;x++){
|
|
591
|
+ // if(this.advicess[j].groupno == this.advicess[x].groupno){
|
|
592
|
+ // // this.arr.push(this.advicess.splice(x,1))
|
|
593
|
+ // this.arrs=this.advicess.splice(x,1)
|
|
594
|
+ // }
|
|
595
|
+ // }
|
|
596
|
+ // }
|
|
597
|
+ for(let j=0;j<len;j++){
|
|
598
|
+ for(let x=j+1;x<len;x++){
|
|
599
|
+ if(arrA[j].groupno == arrA[x].groupno){
|
|
600
|
+ this.arr.push(arrA.splice(x,1))
|
|
601
|
+ }
|
|
602
|
+ }
|
|
603
|
+ }
|
|
604
|
+ console.log('777777777',this.arr);
|
|
605
|
+ return this.arr
|
|
606
|
+ }
|
|
607
|
+ },
|
|
608
|
+ created() {
|
|
609
|
+ this.getAllDoctorList();
|
|
610
|
+ this.getInitData();
|
|
611
|
+ this.getPrescriptionPrint();
|
|
612
|
+ this.getHisPatientDetail();
|
|
613
|
+ var xtuser = this.$store.getters.xt_user;
|
|
614
|
+ this.orgname = xtuser.org.org_name;
|
|
615
|
+ this.org_id = xtuser.org.id;
|
|
616
|
+
|
|
617
|
+ // for(let j=0;j<this.advicess.length;j++){
|
|
618
|
+ // console.log('44444444');
|
|
619
|
+ // for(let x=j+1;x<this.advicess.length;x++){
|
|
620
|
+ // if(this.advicess[j].groupno == this.advicess[x].groupno){
|
|
621
|
+ // this.arr.push(this.advicess.splice(x,1))
|
|
622
|
+ // }
|
|
623
|
+ // }
|
|
624
|
+ // }
|
|
625
|
+ // console.log('777777777',this.arr[0].advice_name);
|
|
626
|
+ // return this.arr
|
|
627
|
+
|
|
628
|
+ },
|
|
629
|
+
|
|
630
|
+ watch: {
|
|
631
|
+ ids: function (val) {
|
|
632
|
+ this.ids = val;
|
|
633
|
+ this.getPrescriptionPrint();
|
|
634
|
+ },
|
|
635
|
+ },
|
|
636
|
+};
|
|
637
|
+</script>
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+<style lang="scss" scoped>
|
|
641
|
+.prescription-print {
|
|
642
|
+ -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
|
|
643
|
+ 0 0 60px rgba(0, 0, 0, 0.06) inset;
|
|
644
|
+ -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
|
|
645
|
+ 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
646
|
+ box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.06) inset;
|
|
647
|
+ margin-bottom: 20px;
|
|
648
|
+ padding: 20px 10px;
|
|
649
|
+}
|
|
650
|
+.printTitle {
|
|
651
|
+ font-size: 22px;
|
|
652
|
+ text-align: center;
|
|
653
|
+ font-weight: bold;
|
|
654
|
+}
|
|
655
|
+.infoTitle {
|
|
656
|
+ display: flex;
|
|
657
|
+ border-bottom: 2px solid #000;
|
|
658
|
+ margin-top: 10px;
|
|
659
|
+ line-height: 24px;
|
|
660
|
+ padding: 0 10px;
|
|
661
|
+}
|
|
662
|
+.infoTitle p {
|
|
663
|
+ width: 200px;
|
|
664
|
+}
|
|
665
|
+.infoMain {
|
|
666
|
+ display: flex;
|
|
667
|
+ flex-wrap: wrap;
|
|
668
|
+ border-bottom: 2px solid #000;
|
|
669
|
+ padding: 0 10px;
|
|
670
|
+}
|
|
671
|
+.infoMain div {
|
|
672
|
+ width: 50%;
|
|
673
|
+ line-height: 24px;
|
|
674
|
+}
|
|
675
|
+.prescriptionBox {
|
|
676
|
+ padding: 0 10px;
|
|
677
|
+ min-height: 450px;
|
|
678
|
+}
|
|
679
|
+.Rp {
|
|
680
|
+ font-size: 22px;
|
|
681
|
+ font-weight: bold;
|
|
682
|
+}
|
|
683
|
+.drugsBox {
|
|
684
|
+ padding-left: 40px;
|
|
685
|
+ margin-bottom: 10px;
|
|
686
|
+ position: relative;
|
|
687
|
+}
|
|
688
|
+.drugsBox div {
|
|
689
|
+ line-height: 20px;
|
|
690
|
+}
|
|
691
|
+.drugsOne {
|
|
692
|
+ line-height: 24px;
|
|
693
|
+ display: inline-block;
|
|
694
|
+ width: 80%;
|
|
695
|
+}
|
|
696
|
+.drugsOne span {
|
|
697
|
+ margin-right: 20px;
|
|
698
|
+}
|
|
699
|
+.doctorBox {
|
|
700
|
+ display: flex;
|
|
701
|
+ justify-content: space-between;
|
|
702
|
+ padding: 0 10px;
|
|
703
|
+ line-height: 24px;
|
|
704
|
+ border-bottom: 2px solid #000;
|
|
705
|
+}
|
|
706
|
+.doctorBoxs{
|
|
707
|
+ width: 100%;
|
|
708
|
+ margin-right: 30px;
|
|
709
|
+ text-align: right;
|
|
710
|
+ padding: 0 10px;
|
|
711
|
+ line-height: 24px;
|
|
712
|
+
|
|
713
|
+}
|
|
714
|
+.doctorBoxtwo {
|
|
715
|
+ display: flex;
|
|
716
|
+ justify-content: space-between;
|
|
717
|
+ padding: 0 10px;
|
|
718
|
+ line-height: 24px;
|
|
719
|
+
|
|
720
|
+}
|
|
721
|
+.actionBar {
|
|
722
|
+ display: flex;
|
|
723
|
+ justify-content: space-between;
|
|
724
|
+ line-height: 24px;
|
|
725
|
+ padding: 0 10px;
|
|
726
|
+}
|
|
727
|
+.actionBar p {
|
|
728
|
+ width: 150px;
|
|
729
|
+}
|
|
730
|
+</style>
|