|
@@ -20,7 +20,7 @@
|
|
|
label="牌价"
|
|
|
width="90">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.marketprice?tool.formatAmount(scope.row.marketprice,2):scope.row.marketprice == 0?tool.formatAmount(0,2):'--'}}</span>
|
|
|
+ <span>{{scope.row.marketprice?tool.formatAmount(scope.row.marketprice,2):tool.formatAmount(0,2)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -36,7 +36,7 @@
|
|
|
label="单价"
|
|
|
width="90">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.price?tool.formatAmount(scope.row.price,2):scope.row.price == 0?tool.formatAmount(0,2):'--'}}</span>
|
|
|
+ <span>{{scope.row.price?tool.formatAmount(scope.row.price,2):tool.formatAmount(0,2)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -44,7 +44,7 @@
|
|
|
label="金额"
|
|
|
width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.amount?tool.formatAmount(scope.row.amount,2):scope.row.amount == 0?tool.formatAmount(0,2):'--'}}</span>
|
|
|
+ <span>{{scope.row.amount?tool.formatAmount(scope.row.amount,2):tool.formatAmount(0,2)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -52,7 +52,7 @@
|
|
|
label="退款金额"
|
|
|
width="100">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.returnamount?tool.formatAmount(scope.row.returnamount,2):scope.row.returnamount == 0?tool.formatAmount(0,2):'--'}}</span>
|
|
|
+ <span>{{scope.row.returnamount?tool.formatAmount(scope.row.returnamount,2):tool.formatAmount(0,2)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -68,7 +68,7 @@
|
|
|
label="居间产品单价"
|
|
|
width="150">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.rebate_price?tool.formatAmount(scope.row.rebate_price,2):scope.row.rebate_price == 0?tool.formatAmount(0,2):'--'}}</span>
|
|
|
+ <span>{{scope.row.rebate_price?tool.formatAmount(scope.row.rebate_price,2):tool.formatAmount(0,2)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -76,7 +76,7 @@
|
|
|
label="居间单价"
|
|
|
width="120">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.rebate_unit_price?tool.formatAmount(scope.row.rebate_unit_price,2):scope.row.rebate_unit_price == 0?tool.formatAmount(0,2):'--'}}</span>
|
|
|
+ <span>{{scope.row.rebate_unit_price?tool.formatAmount(scope.row.rebate_unit_price,2):tool.formatAmount(0,2)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -84,7 +84,7 @@
|
|
|
label="居间费"
|
|
|
width="120">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.rebate?tool.formatAmount(scope.row.rebate,2):scope.row.rebate == 0?tool.formatAmount(0,2):'--'}}</span>
|
|
|
+ <span>{{scope.row.rebate?tool.formatAmount(scope.row.rebate,2):tool.formatAmount(0,2)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|