|
@@ -536,6 +536,13 @@
|
|
<el-table-column align="center" type="selection" claimOrders width="100" border="true"
|
|
<el-table-column align="center" type="selection" claimOrders width="100" border="true"
|
|
:selectable="checkSelectable">
|
|
:selectable="checkSelectable">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column align="center" width='100'>
|
|
|
|
+ <template slot-scope="{row}">
|
|
|
|
+ <span style="color:red">
|
|
|
|
+ {{ row.invoiceAmount === notClaimAmount ? '推荐匹配' : '' }}
|
|
|
|
+ </span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="订单名称" align="center" show-overflow-tooltip>
|
|
<el-table-column label="订单名称" align="center" show-overflow-tooltip>
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.name }}</span>
|
|
<span>{{ row.name }}</span>
|
|
@@ -581,7 +588,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="实收款(元)" align="center" width='100'>
|
|
<el-table-column label="实收款(元)" align="center" width='100'>
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <span>{{ row.productionRealAmount }}</span>
|
|
|
|
|
|
+ <span style="color:red;font-weight: bold;">{{ row.productionRealAmount }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="标准收费(元)" align="center" width='120'>
|
|
<el-table-column label="标准收费(元)" align="center" width='120'>
|
|
@@ -589,6 +596,11 @@
|
|
<span>{{ row.standardAmount }}</span>
|
|
<span>{{ row.standardAmount }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column label="开票金额(元)" align="center" width='120'>
|
|
|
|
+ <template slot-scope="{row}">
|
|
|
|
+ <span>{{ row.invoiceAmount?row.invoiceAmount:'--' }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="市场人员" align="center" width='100'>
|
|
<el-table-column label="市场人员" align="center" width='100'>
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
<span>{{ row.marketUser }}</span>
|
|
<span>{{ row.marketUser }}</span>
|