Browse Source

8月16,处方明细的下载

yq1 7 months ago
parent
commit
b62e1a1cba
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/xt_pages/outpatientTool/components/pdetail.vue

+ 3 - 3
src/xt_pages/outpatientTool/components/pdetail.vue View File

@@ -200,7 +200,7 @@ export default {
200 200
         let count = order.count
201 201
         let price = order.price.toFixed(2)
202 202
         let pay_sumamt = (order.price.toFixed(2) * order.count).toFixed(2)
203
-        let total = order.total.toFixed(2)
203
+        let total = parseFloat(order.total).toFixed(2)
204 204
 
205 205
         let obj = {
206 206
           '患者姓名': name,
@@ -226,8 +226,8 @@ export default {
226 226
 
227 227
     },
228 228
     getCostType(type){
229
-      console.log(this.costClassifyList)
230
-      console.log(type)
229
+      // console.log(this.costClassifyList)
230
+      // console.log(type)
231 231
       var name = "";
232 232
       for (let i = 0; i < this.costClassifyList.length; i++) {
233 233
         if (type == this.costClassifyList[i].value) {