|
@@ -31,25 +31,25 @@
|
31
|
31
|
|
32
|
32
|
</el-tab-pane>
|
33
|
33
|
<el-tab-pane label="病历详情" name="second">
|
34
|
|
- <div class="detailMain">
|
35
|
|
- <span style="width:240px;">处方号:{{order.prescription_number}}</span>
|
36
|
|
- <span style="width:200px;">医生:{{order.doctor}}</span>
|
37
|
|
- <span style="width:200px;">科室:{{order.departments}}</span>
|
38
|
|
- <span style="width:200px;">创建时间: {{getTimes(order.ctime,"{y}-{m}-{d} {h}:{i}")}}</span>
|
39
|
|
- </div>
|
|
34
|
+
|
40
|
35
|
<div class="commonCell">
|
41
|
|
- <p>基本信息</p>
|
|
36
|
+ <p style="color:#409EFF;">基本信息</p>
|
42
|
37
|
<div class="detailMain">
|
43
|
|
- <span style="width:240px;">疾病名称:{{case_history.diagnostic}}</span>
|
44
|
|
- <span style="width:200px;">症状:{{case_history.diagnostic}}</span>
|
45
|
|
- <span style="width:200px;">发病日期:{{getTimes(case_history.sick_date,"{y}-{m}-{d}")}}</span>
|
46
|
|
- <span style="width:200px;" v-if="case_history.is_infect== 1">是否传染:是</span>
|
47
|
|
- <span style="width:200px;" v-if="case_history.is_infect != 1">是否传染:否</span>
|
|
38
|
+ <span style="width:260px;">处方号:{{order.prescription_number}}</span>
|
|
39
|
+ <span style="width:180px;">姓名:{{order.patient.name}}</span>
|
|
40
|
+ <span style="width:240px;">证件号:{{order.patient.id_card_no}}</span>
|
|
41
|
+ <span style="width:180px;">联系电话:{{order.patient.phone}}</span>
|
|
42
|
+ <span style="width:260px;">医生:{{order.doctor}}</span>
|
|
43
|
+ <span style="width:180px;">科室:{{order.departments}}</span>
|
|
44
|
+ <span style="width:240px;">创建时间: {{getTimes(order.ctime,"{y}-{m}-{d} {h}:{i}")}}</span>
|
|
45
|
+ <!-- <span style="width:180px;">疾病名称:{{case_history.diagnostic}}</span>
|
|
46
|
+ <span style="width:180px;">症状:{{case_history.diagnostic}}</span> -->
|
|
47
|
+
|
48
|
48
|
|
49
|
49
|
</div>
|
50
|
50
|
</div>
|
51
|
51
|
<div class="commonCell">
|
52
|
|
- <p>体格信息</p>
|
|
52
|
+ <p style="color:#409EFF;">体格信息</p>
|
53
|
53
|
<div class="detailMain">
|
54
|
54
|
<span style="width:140px;">体温:{{case_history.temperature}}℃</span>
|
55
|
55
|
<span style="width:140px;">呼吸:{{case_history.breathing}} 次/分</span>
|
|
@@ -58,6 +58,14 @@
|
58
|
58
|
<span style="width:200px;">血压:{{case_history.sbp}}~{{case_history.dbp}} mmHg</span>
|
59
|
59
|
</div>
|
60
|
60
|
</div>
|
|
61
|
+ <div class="commonCell">
|
|
62
|
+ <p style="color:#409EFF;">病历信息</p>
|
|
63
|
+ <div class="detailMain">
|
|
64
|
+ <span style="width:260px;" v-if="case_history.is_infect== 1">是否传染:是</span>
|
|
65
|
+ <span style="width:260px;" v-if="case_history.is_infect != 1">是否传染:否</span>
|
|
66
|
+ <span style="width:180px;">发病日期:{{getTimes(case_history.sick_date,"{y}-{m}-{d}")}}</span>
|
|
67
|
+ </div>
|
|
68
|
+ </div>
|
61
|
69
|
<div class="commonCell">
|
62
|
70
|
<p>主诉</p>
|
63
|
71
|
<div>{{case_history.chief_conplaint}}</div>
|
|
@@ -203,6 +211,7 @@
|
203
|
211
|
this.hisPatientInfo = response.data.data.order.his_patient
|
204
|
212
|
this.case_history = response.data.data.order.case_history
|
205
|
213
|
this.order = response.data.data.order
|
|
214
|
+ console.log('this.order',this.order)
|
206
|
215
|
|
207
|
216
|
|
208
|
217
|
this.prescriptions = []
|
|
@@ -283,6 +292,7 @@
|
283
|
292
|
}
|
284
|
293
|
|
285
|
294
|
.detailMain {
|
|
295
|
+ flex: 1;
|
286
|
296
|
span {
|
287
|
297
|
display: inline-block;
|
288
|
298
|
}
|