Преглед на файлове

8月16,处方明细的下载

yq1 преди 8 месеца
родител
ревизия
b62e1a1cba
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      src/xt_pages/outpatientTool/components/pdetail.vue

+ 3 - 3
src/xt_pages/outpatientTool/components/pdetail.vue Целия файл

@@ -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) {