|
@@ -15,7 +15,7 @@
|
15
|
15
|
</div>
|
16
|
16
|
|
17
|
17
|
<div class="allListInfo">
|
18
|
|
- <div>西药:{{order.westernMedicineCostTotal?order.westernMedicineCostTotal:''}}</div>
|
|
18
|
+ <div>西药: {{order.westernMedicineCostTotal?order.westernMedicineCostTotal:''}}</div>
|
19
|
19
|
<div >中成药:{{order.chineseTraditionalMedicineCostTotal?order.chineseTraditionalMedicineCostTotal:''}}</div>
|
20
|
20
|
<div >中草药:</div>
|
21
|
21
|
<div >检查费:{{order.checkCostTotal?order.checkCostTotal:''}}</div>
|
|
@@ -42,6 +42,7 @@
|
42
|
42
|
<div >麻醉费:</div>
|
43
|
43
|
<div >材料费:{{order.materialCostTotal?order.materialCostTotal:''}}</div>
|
44
|
44
|
<div >其他费:{{order.otherCostTotal?order.otherCostTotal:''}}</div>
|
|
45
|
+ <div style="visibility: hidden;">其他费:</div>
|
45
|
46
|
</div>
|
46
|
47
|
<!-- <div style="display:flex;justify-content: space-between;">-->
|
47
|
48
|
<!-- <div style="position: absolute;top:160px;left:40px">西药</div>-->
|
|
@@ -97,12 +98,12 @@
|
97
|
98
|
<template v-for='(item,index) in list'>
|
98
|
99
|
<tr>
|
99
|
100
|
<td style="width:10%">{{ item.med_chrgitm_type }}</td>
|
100
|
|
- <td style="width:35%">{{ item.name }}</td>
|
|
101
|
+ <td style="width:35%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">{{ item.name }}</td>
|
101
|
102
|
<td style="width:15%">{{ item.spec }}</td>
|
102
|
103
|
<td style="width:5%">{{ item.unit }}</td>
|
103
|
104
|
<td style="width:10%">{{ item.count }}</td>
|
104
|
|
- <td style="width:10%">{{ item.price }}</td>
|
105
|
|
- <td style="width:10%">{{ (item.price * item.count).toFixed(2) }}</td>
|
|
105
|
+ <td style="width:10%;text-align:right;">{{ item.price }}</td>
|
|
106
|
+ <td style="width:10%;text-align:right;">{{ (item.price * item.count).toFixed(2) }}</td>
|
106
|
107
|
<td style="width:10%">{{ item.medicine_insurance_kind }}</td>
|
107
|
108
|
|
108
|
109
|
</tr>
|