|  | @@ -19,7 +19,7 @@
 | 
	
		
			
				|  |  |            <a-descriptions-item label="客户地址:" :span="3">{{ addressStr }}</a-descriptions-item>
 | 
	
		
			
				|  |  |            <a-descriptions-item label="客户传真:">{{ detailData&&detailData.fax || '--' }}</a-descriptions-item>
 | 
	
		
			
				|  |  |            <a-descriptions-item label="配送方式:">{{ detailData&&detailData.dispatchTypeDictValue || '--' }}</a-descriptions-item>
 | 
	
		
			
				|  |  | -          <a-descriptions-item label="是否为下级:">{{ detailData&&detailData.mainFlagDictValue || '--' }}</a-descriptions-item>
 | 
	
		
			
				|  |  | +          <a-descriptions-item label="是否为下级:">{{ detailData&&detailData.dealerFlagDictValue || '--' }}</a-descriptions-item>
 | 
	
		
			
				|  |  |            <a-descriptions-item label="价格类型:">{{ detailData&&detailData.priceTypeDictValue || '--' }}</a-descriptions-item>
 | 
	
		
			
				|  |  |            <a-descriptions-item label="收款方式:">{{ detailData&&detailData.settleStyleSnDictValue || '--' }}</a-descriptions-item>
 | 
	
		
			
				|  |  |            <a-descriptions-item label="客户类型:">{{ detailData&&detailData.customerTypeName || '--' }}</a-descriptions-item>
 | 
	
	
		
			
				|  | @@ -35,7 +35,6 @@
 | 
	
		
			
				|  |  |              :columns="columns"
 | 
	
		
			
				|  |  |              :data="loadData"
 | 
	
		
			
				|  |  |              :defaultLoadData="false"
 | 
	
		
			
				|  |  | -            :scroll="{ y: 240 }"
 | 
	
		
			
				|  |  |              bordered>
 | 
	
		
			
				|  |  |              </s-table>
 | 
	
		
			
				|  |  |            </div>
 | 
	
	
		
			
				|  | @@ -78,10 +77,10 @@ export default {
 | 
	
		
			
				|  |  |        isShow: this.openModal, //  是否打开弹框
 | 
	
		
			
				|  |  |        detailData: null, //  网点数据
 | 
	
		
			
				|  |  |        columns: [
 | 
	
		
			
				|  |  | -        { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
 | 
	
		
			
				|  |  | -        { title: '合并时间', dataIndex: 'createDate', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
 | 
	
		
			
				|  |  | -        { title: '被合并客户名称', dataIndex: 'customerName', width: '42%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
 | 
	
		
			
				|  |  | -        { title: '主体客户名称', dataIndex: 'contactName', width: '42%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
 | 
	
		
			
				|  |  | +        { title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
 | 
	
		
			
				|  |  | +        { title: '合并时间', dataIndex: 'createDate', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
 | 
	
		
			
				|  |  | +        { title: '被合并客户名称', dataIndex: 'customerName', width: '40%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
 | 
	
		
			
				|  |  | +        { title: '主体客户名称', dataIndex: 'contactName', width: '40%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
 | 
	
		
			
				|  |  |        ],
 | 
	
		
			
				|  |  |        // 加载数据方法 必须为 Promise 对象
 | 
	
		
			
				|  |  |        loadData: parameter => {
 |