dev
e 3 years ago
parent 20864440e1
commit 54875fca29
  1. 2
      src/views/order/AddOrder.vue

@ -985,7 +985,7 @@ export default {
// //
dealComputers(e,row){ dealComputers(e,row){
if(row.finalPrice&&row.accountNum){ if(row.finalPrice&&row.accountNum){
row.totalAmount = (((row.finalPrice*100)*(row.accountNum*100))/100).toFixed(2); row.totalAmount = Math.floor(((row.finalPrice*100)*(row.accountNum*100))/10000).toFixed(2);
} }
this.allAmount() this.allAmount()
}, },

Loading…
Cancel
Save