|
@@ -61,6 +61,11 @@
|
|
|
<span>{{ row.shouldAmount?row.shouldAmount:(row.orderShouldAmount?row.orderShouldAmount:'--') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="开票金额(元)" align="center" width='120'>
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span style="color:red;font-weight:bold">{{ row.planAmount?row.planAmount:'--' }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="客户名称" align="center" width='120' show-overflow-tooltip>
|
|
|
<template slot-scope="{row}">
|
|
|
<span>{{ row.clienteleName }}</span>
|
|
@@ -86,10 +91,9 @@
|
|
|
<span>{{ row.owner }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
-
|
|
|
- <el-table-column label="应收款备注" align="center" width='120' show-overflow-tooltip>
|
|
|
+ <el-table-column label="送达状态" align="center" width='120'>
|
|
|
<template slot-scope="{row}">
|
|
|
- <span>{{ row.remark }}</span>
|
|
|
+ <span>{{ row.delivery?'已送达':'--' }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="下单时间" align="center" width='200'>
|