shish 1 year ago
parent
commit
4c2e29a5a7
1 changed files with 1 additions and 1 deletions
  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>