|
@@ -145,7 +145,7 @@ export default {
|
|
|
{ title: '序号', dataIndex: 'no', width: '6%', align: 'center' },
|
|
|
{ title: '创建时间', dataIndex: 'createDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '客户名称', dataIndex: 'customerName', width: '12%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '关联单号', dataIndex: 'dealerSalesNo ', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '关联单号', dataIndex: 'dealerSalesNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '金额(¥)', dataIndex: 'tradeAmount', width: '8%', align: 'right', scopedSlots: { customRender: 'tradeAmount' } },
|
|
|
{ title: '交易类型', dataIndex: 'tradeTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '交易状态', dataIndex: 'dealStateDictValue', width: '8%', align: 'center', scopedSlots: { customRender: 'status' } }
|
|
@@ -156,6 +156,7 @@ export default {
|
|
|
this.spinning = true
|
|
|
const _this = this
|
|
|
const parames = Object.assign(parameter, _this.queryParam)
|
|
|
+ parames.dealerSn = _this.$store.state.user.authOrgs[0].orgSn
|
|
|
return bizTradeList(parames).then(res => {
|
|
|
let data
|
|
|
if (res.status == 200) {
|