浏览代码

fix: 置换单实付金额计算

zh 2 年之前
父节点
当前提交
dcdbf69e41
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/views/supply/displace/displace_list.vue

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

@@ -370,9 +370,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.ke_price * scope.row.ke_refundableQty -
                 scope.row.singleRebateAmount * scope.row.ke_refundableQty -
-                scope.row.discAmount
+                scope.row.ke_discAmount
               }}
             </template>
           </el-table-column>