Browse Source

fix: 实付金额计算

zh 2 years ago
parent
commit
1fc7cc2e3a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/views/supply/displace/displace_list.vue

+ 3 - 3
src/views/supply/displace/displace_list.vue

@@ -369,9 +369,9 @@
           <el-table-column align="right" label="实付金额" prop="payAmount" min-width="100" show-overflow-tooltip>
             <template slot-scope="scope">
               {{
-                scope.row.price * scope.row.ke_refundableQty -
-                  scope.row.singleRebateAmount * scope.row.ke_refundableQty -
-                  scope.row.discAmount
+                (scope.row.price * scope.row.ke_refundableQty) -
+                  ( scope.row.singleRebateAmount * scope.row.ke_refundableQty) -
+                  ( scope.row.discAmount*scope.row.ke_refundableQty)
               }}
             </template>
           </el-table-column>