|
@@ -141,13 +141,13 @@ export default {
|
|
|
{ title: '客户名称', dataIndex: 'customeName', width: '8%', align: 'left', customRender: renderContent },
|
|
|
{ title: '物流单号', dataIndex: 'transportNo', width: '8%', align: 'center', customRender: renderContent },
|
|
|
{ title: '物流电话', dataIndex: 'transportTele', width: '8%', align: 'center', customRender: renderContent },
|
|
|
- { title: '托运日期', dataIndex: 'sendDate', width: '8%', align: 'center', customRender: renderContent },
|
|
|
+ { title: '托运日期', dataIndex: 'sendDateStr', width: '8%', align: 'center', customRender: renderContent },
|
|
|
{ title: '收货人', dataIndex: 'customerCacateName', width: '6%', align: 'left', customRender: renderContent },
|
|
|
{ title: '收货电话', dataIndex: 'customerCacatePhone', width: '8%', align: 'center', customRender: renderContent },
|
|
|
{ title: '收货地址', dataIndex: 'customerAddressDetail', width: '8%', align: 'center', customRender: renderContent },
|
|
|
{ title: '目的地', dataIndex: 'customerAddress', width: '6%', align: 'center', customRender: renderContent },
|
|
|
- { title: '付款方式', dataIndex: 'payTypeDictValue', width: '6%', align: 'center', customRender: renderContent },
|
|
|
- { title: '交货方式', dataIndex: 'handoverTypeDictValue', width: '6%', align: 'center', customRender: renderContent },
|
|
|
+ { title: '付款方式', dataIndex: 'payTypeStr', width: '6%', align: 'center', customRender: renderContent },
|
|
|
+ { title: '交货方式', dataIndex: 'handoverTypeStr', width: '6%', align: 'center', customRender: renderContent },
|
|
|
{ title: '货物名称', dataIndex: 'goodsName', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '件数', dataIndex: 'goodsQtyStr', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
{ title: '体积(m3)', dataIndex: 'goodsVolumeStr', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? toFixedDecimal(text,2) : '--') } },
|
|
@@ -182,6 +182,7 @@ export default {
|
|
|
return ret
|
|
|
},
|
|
|
getData () {
|
|
|
+ debugger
|
|
|
const paramsData = JSON.parse(JSON.stringify(this.paramsData))
|
|
|
this.loadData = this.formatData(paramsData.rightList || [])
|
|
|
this.unLoadData = this.formatData(paramsData.errorList || [])
|