|
@@ -80,11 +80,9 @@
|
|
|
<!-- 客户信息 -->
|
|
|
<template slot="userInfo" slot-scope="text, record">
|
|
|
<!-- <p>{{ text }}<br>{{ record.vehicleNumber ? record.vehicleNumber : '--' }}</p> -->
|
|
|
- <div>
|
|
|
- <span v-if="record.custMobile">{{ record.custMobile }}</span>
|
|
|
- <span v-if="record.vehicleNum">{{ record.vehicleNum }}</span>
|
|
|
- </div>
|
|
|
- <span v-if="!(record.custMobile && record.vehicleNum)">--</span>
|
|
|
+ <div v-if="record.custMobile">{{ record.custMobile }}</div>
|
|
|
+ <div v-if="record.vehicleNum">{{ record.vehicleNum }}</div>
|
|
|
+ <div v-if="!record.custMobile && !record.vehicleNum">--</div>
|
|
|
</template>
|
|
|
</s-table>
|
|
|
</a-card>
|
|
@@ -149,6 +147,24 @@ export default {
|
|
|
width: 150,
|
|
|
align: 'center'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '核销门店',
|
|
|
+ dataIndex: 'usedStoreName',
|
|
|
+ width: 150,
|
|
|
+ align: 'center',
|
|
|
+ customRender: function (text) {
|
|
|
+ return text || '--'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '门店类型',
|
|
|
+ dataIndex: 'usedStoreTypeName',
|
|
|
+ width: 150,
|
|
|
+ align: 'center',
|
|
|
+ customRender: function (text) {
|
|
|
+ return text || '--'
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
title: '客户信息',
|
|
|
scopedSlots: { customRender: 'userInfo' },
|