소스 검색

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>