|
@@ -242,7 +242,7 @@ export default {
|
|
|
{ title: '序号', dataIndex: 'no', align: 'center', width: '4%' },
|
|
|
{ title: '来源', dataIndex: 'salesBillSourceDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '销售单号', scopedSlots: { customRender: 'salesBillNo' }, width: '9%', align: 'center' },
|
|
|
- { title: '客户名称', dataIndex: 'buyerName', align: 'center', width: '10%', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '客户名称', dataIndex: 'buyerName', align: 'center', width: '15%', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '总款数', dataIndex: 'totalCategory', align: 'center', width: '5%', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
{ title: '总数量', dataIndex: 'totalQty', align: 'center', width: '5%', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
{ title: '总售价', dataIndex: 'totalAmount', align: 'center', width: '5%', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
@@ -250,12 +250,12 @@ export default {
|
|
|
{ title: '创建时间', dataIndex: 'createDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '审核时间', dataIndex: 'auditDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '业务状态', dataIndex: 'billStatusDictValue', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '审核', scopedSlots: { customRender: 'audit' }, width: '3%', align: 'center' },
|
|
|
- { title: '急件', scopedSlots: { customRender: 'oosFlag' }, width: '3%', align: 'center' },
|
|
|
- { title: '出库', scopedSlots: { customRender: 'waitOut' }, width: '3%', align: 'center' },
|
|
|
- { title: '收款', scopedSlots: { customRender: 'financial' }, width: '3%', align: 'center' },
|
|
|
+ { title: '审核', scopedSlots: { customRender: 'audit' }, width: '2%', align: 'center' },
|
|
|
+ { title: '急件', scopedSlots: { customRender: 'oosFlag' }, width: '2%', align: 'center' },
|
|
|
+ { title: '出库', scopedSlots: { customRender: 'waitOut' }, width: '2%', align: 'center' },
|
|
|
+ { title: '收款', scopedSlots: { customRender: 'financial' }, width: '2%', align: 'center' },
|
|
|
// { title: '财务状态', dataIndex: 'financialStatusDictValue', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
|
|
|
],
|
|
|
// 加载数据方法 必须为 Promise 对象
|
|
|
loadData: parameter => {
|