huangyw 3 years ago
parent
commit
2f44cc7a75

+ 4 - 1
src/xt_pages/outpatientTool/components/detailStatistics.vue View File

100
       </el-table-column>
100
       </el-table-column>
101
      
101
      
102
     </el-table>
102
     </el-table>
103
-     <div>总费用:{{getAllPice()}}</div>
103
+    <div style="display:flex;justify-content: space-around;">
104
+      <div>总费用:{{getAllPice()}}</div>
104
      <div>个人支付:{{getActPay()}}</div>
105
      <div>个人支付:{{getActPay()}}</div>
105
      <div>基金支付记账:{{getFundPaySumamt()}}</div>
106
      <div>基金支付记账:{{getFundPaySumamt()}}</div>
106
      <div>补充医疗支付记账:{{getHifesPay()}}</div>
107
      <div>补充医疗支付记账:{{getHifesPay()}}</div>
107
     <div>救助支付金额:{{getMafPay()}}</div>
108
     <div>救助支付金额:{{getMafPay()}}</div>
109
+    </div>
110
+    
108
   </div>
111
   </div>
109
 
112
 
110
   <!-- </div> -->
113
   <!-- </div> -->

+ 36 - 0
src/xt_pages/outpatientTool/components/gatherStatistics.vue View File

99
       </el-table-column>
99
       </el-table-column>
100
 
100
 
101
     </el-table>
101
     </el-table>
102
+     <div>
103
+      <div class="listInfo">
104
+            <div>西药:</div>
105
+            <div>中成药:{{chineseTraditionalMedicineCostTotal}}</div>
106
+            <div>中草药:</div>
107
+        </div>
108
+        <div class="listInfo">
109
+            <div>检查费:{{checkCostTotal}}</div>
110
+            <div>输氧费:</div>
111
+            <div>手术费:</div>
112
+        </div>
113
+        <div class="listInfo">
114
+            <div>化验费:{{laboratoryCostTotal}}</div>
115
+            <div>输血费:</div>
116
+            <div>诊断费:{{zhenChaCostTotal}}</div>
117
+        </div>
118
+         <div class="listInfo">
119
+            <div>治疗费:</div>
120
+            <div>护理费:</div>
121
+            <div>床位费:{{bedCostTotal}}</div>
122
+        </div>
123
+        <div class="listInfo" style="margin-bottom: 20px;">
124
+            <div>麻醉费:</div>
125
+            <div>材料费:{{materialCostTotal}}</div>
126
+            <div>其他:{{otherCostTotal}}</div>
127
+        </div>
128
+    </div>
102
   </div>
129
   </div>
103
 </template>
130
 </template>
104
 
131
 
654
   }
681
   }
655
 }
682
 }
656
 </script>
683
 </script>
684
+<style lang="scss" scoped>
685
+.listInfo{
686
+  display: flex;
687
+  justify-content: space-around;
688
+  div{
689
+    width: 200px;
690
+  }
691
+}
692
+</style>