|
@@ -122,14 +122,14 @@ export default {
|
|
|
queryParam: {
|
|
|
shelfSn: undefined,
|
|
|
settleType: undefined,
|
|
|
- dealerName: undefined,
|
|
|
+ customerName: undefined,
|
|
|
beginAmount: '',
|
|
|
endAmount: ''
|
|
|
},
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: '10%', align: 'center' },
|
|
|
{ title: '货架名称', dataIndex: 'shelfName', width: '25%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '关联客户', dataIndex: 'dealerName', width: '25%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '关联客户', dataIndex: 'customerName', width: '25%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
{ title: '结算方式', dataIndex: 'settleTypeDictValue', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '待结金额', dataIndex: 'waitSettleAmount', width: '15%', align: 'right', customRender: function (text) { return toThousands(text, 2) || '--' } },
|
|
|
{ title: '操作', width: '15%', align: 'left', scopedSlots: { customRender: 'action' } }
|
|
@@ -173,9 +173,9 @@ export default {
|
|
|
custChange (obj, row) {
|
|
|
if (row) {
|
|
|
this.queryParam.customerSn = row && row.customerSn || undefined
|
|
|
- this.queryParam.dealerName = undefined
|
|
|
+ this.queryParam.customerName = undefined
|
|
|
} else {
|
|
|
- this.queryParam.dealerName = obj || undefined
|
|
|
+ this.queryParam.customerName = obj || undefined
|
|
|
this.queryParam.customerSn = undefined
|
|
|
}
|
|
|
},
|
|
@@ -216,7 +216,8 @@ export default {
|
|
|
this.queryParam = {
|
|
|
shelfSn: undefined,
|
|
|
settleType: undefined,
|
|
|
- dealerName: undefined,
|
|
|
+ customerName: undefined,
|
|
|
+ customerSn: undefined,
|
|
|
beginAmount: '',
|
|
|
endAmount: ''
|
|
|
}
|