给报表里面的数值增加排序功能
This commit is contained in:
@@ -135,8 +135,8 @@
|
||||
{title: '型号', dataIndex: 'model', width: 100},
|
||||
{title: '类型', dataIndex: 'categoryName', width: 120},
|
||||
{title: '单位', dataIndex: 'materialUnit', width: 120},
|
||||
{title: '入库数量', dataIndex: 'numSum', width: 120},
|
||||
{title: '入库金额', dataIndex: 'priceSum', width: 120}
|
||||
{title: '入库数量', dataIndex: 'numSum', sorter: (a, b) => a.numSum - b.numSum, width: 120},
|
||||
{title: '入库金额', dataIndex: 'priceSum', sorter: (a, b) => a.priceSum - b.priceSum, width: 120}
|
||||
],
|
||||
url: {
|
||||
list: "/depotHead/findInOutMaterialCount",
|
||||
|
||||
Reference in New Issue
Block a user