Browse Source

代码更新

qymljy 2 years ago
parent
commit
6218944a94
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/SDrpManagement/shopCart/modules/total.vue

+ 1 - 1
src/SDrpManagement/shopCart/modules/total.vue

@@ -32,7 +32,7 @@ export default {
     totalPrice (val) {
       this.total = 0
       val.forEach(element => {
-        this.total += element.gradeprice * element.qty
+        this.total += element.oldprice * element.qty
       });
 
     },