shish hace 2 años
padre
commit
4c2e29a5a7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      ghs/src/views/order/confirm.vue

+ 1 - 1
ghs/src/views/order/confirm.vue

@@ -32,7 +32,7 @@
         <el-table-column prop="userPrice" label="单价" width="110" align="center"></el-table-column>
         <el-table-column prop="sumPrice" label="金额" width="110" align="center">
           <template slot-scope="scope">
-            ¥{{ parseFloat(Number(scope.row.userPrice)*Number(scope.row.bigCount).toFixed(2)) }}
+            ¥{{ parseFloat((Number(scope.row.userPrice)*Number(scope.row.bigCount)).toFixed(2)) }}
           </template>
         </el-table-column>