瀏覽代碼

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

XMLWAN 3 年之前
父節點
當前提交
6bae8f3cd8

+ 4 - 1
src/xt_pages/outpatientTool/components/detailStatistics.vue 查看文件

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 查看文件

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
 
660
   }
687
   }
661
 }
688
 }
662
 </script>
689
 </script>
690
+<style lang="scss" scoped>
691
+.listInfo{
692
+  display: flex;
693
+  justify-content: space-around;
694
+  div{
695
+    width: 200px;
696
+  }
697
+}
698
+</style>