|
@@ -72,12 +72,12 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="委托人" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.bailor }}</span>
|
|
|
+ <span>{{ row.bailor == null ? '-' : row.bailor }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="委托人联系电话" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.bailorContactTel }}</span>
|
|
|
+ <span>{{ row.bailorContactTel == null ? '-' : row.bailorContactTel }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="当前节点" align="center" width="150">
|
|
@@ -102,42 +102,42 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="评估结论对应的评估值(万)" align="center" width="200">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.estimatedValue }}</span>
|
|
|
+ <span>{{ row.estimatedValue == null ? '-' : row.estimatedValue }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="订单应收款(元)" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.shouldAmount }}</span>
|
|
|
+ <span>{{ row.shouldAmount == null ? '-' : row.shouldAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="订单实收款(元)" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.realAmount }}</span>
|
|
|
+ <span>{{ row.realAmount == null ? '-' : row.realAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="产品应收款(元)" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.productionShouldAmount }}</span>
|
|
|
+ <span>{{ row.productionShouldAmount == null ? '-' : row.productionShouldAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="产品实收款(元)" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.productionRealAmount }}</span>
|
|
|
+ <span>{{ row.productionRealAmount == null ? '-' : row.productionRealAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="标准收费(元)" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.standardAmount }}</span>
|
|
|
+ <span>{{ row.standardAmount == null ? '-' : row.standardAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="折扣比例" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.discount }}</span>
|
|
|
+ <span>{{ row.discount == null ? '-' : row.discount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="实际开票金额" align="center" width="150">
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.invoiceRealAmount }}</span>
|
|
|
+ <span>{{ row.invoiceRealAmount == null ? '-' : row.invoiceRealAmount }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="送达状态" align="center" width="150">
|