|
@@ -150,12 +150,12 @@
|
|
|
<el-table-column label="被扫次数" align="center" prop="scanCounts" />
|
|
|
<el-table-column label="佣金总额" align="center" prop="brokerageTotal">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.brokerageTotal">¥{{ scope.row.brokerageTotal }}</span>
|
|
|
+ <span v-if="scope.row.brokerageTotal || scope.row.brokerageTotal==0">¥{{ scope.row.brokerageTotal }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="待提现" align="center" prop="withdrawTotal">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.withdrawTotal">¥{{ scope.row.withdrawTotal }}</span>
|
|
|
+ <span v-if="scope.row.withdrawTotal || scope.row.withdrawTotal ==0">¥{{ scope.row.withdrawTotal }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="是否可提现" align="center" prop="allowWithdraw">
|