|
|
@@ -25,6 +25,13 @@
|
|
|
{{ scope.row.customName }}
|
|
|
</div>
|
|
|
</template>
|
|
|
+
|
|
|
+ <template #table-column-debt="{scope}">
|
|
|
+ <span style="color:red;font-weight:bold;font-size:13px;">
|
|
|
+ {{ scope.row.debt == 1 ? '赊' : '' }}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template #table-column-addTime="{scope}">
|
|
|
<div>
|
|
|
{{ scope.row.addTime?scope.row.addTime.substr(5,11):'' }}
|
|
|
@@ -37,16 +44,17 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-sameTimeIdsNum="{scope}">
|
|
|
- <div v-if="scope.row.sameTimeIdsNum>1" style="color:red;font-weight:bold;font-size:16px;">{{ scope.row.sameTimeIdsNum }}</div>
|
|
|
+ <div v-if="scope.row.sameTimeIdsNum>1" style="color:#3385d9;font-weight:bold;font-size:16px;">{{ scope.row.sameTimeIdsNum }}</div>
|
|
|
+ <div v-else>-</div>
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-book="{scope}">
|
|
|
<span v-if="scope.row.book ==1" style="color:green;font-weight:bold;font-size:13px;">预</span>
|
|
|
- <span></span>
|
|
|
+ <span v-else>-</span>
|
|
|
</template>
|
|
|
<template #table-column-sendTimeWant="{scope}">
|
|
|
<span v-if="scope.row.book ==1" style="color:green;font-weight:bold;font-size:13px;">{{scope.row.sendTimeWant?scope.row.sendTimeWant.substr(5,5):''}}</span>
|
|
|
- <span></span>
|
|
|
+ <span v-else>-</span>
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@@ -278,7 +286,7 @@ export default {
|
|
|
prop: 'customName',
|
|
|
label: '客户',
|
|
|
align: 'center',
|
|
|
- width: '150'
|
|
|
+ width: '120'
|
|
|
},
|
|
|
{
|
|
|
prop: 'customMobile',
|
|
|
@@ -292,6 +300,12 @@ export default {
|
|
|
align: 'center',
|
|
|
width: '50'
|
|
|
},
|
|
|
+ {
|
|
|
+ prop: 'debt',
|
|
|
+ label: '赊账',
|
|
|
+ align: 'center',
|
|
|
+ width: '50'
|
|
|
+ },
|
|
|
{
|
|
|
prop: 'book',
|
|
|
label: '预订单',
|
|
|
@@ -306,7 +320,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
prop: 'sameTimeIdsNum',
|
|
|
- label: '当天订单',
|
|
|
+ label: '当天多单',
|
|
|
align: 'center',
|
|
|
width: '80'
|
|
|
},
|
|
|
@@ -318,7 +332,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
prop: 'actPrice',
|
|
|
- label: '实付应付',
|
|
|
+ label: '实际',
|
|
|
align: 'center',
|
|
|
emptyText: '无',
|
|
|
width: '90'
|