|
@@ -116,7 +116,7 @@
|
|
|
:data-source="supplyCapacityData"
|
|
|
:loading="loading"
|
|
|
:pagination="pagination"
|
|
|
- :scroll="{ x: 1800}"
|
|
|
+ :scroll="{ x: 1800,y:500}"
|
|
|
@change="handleTableChange"
|
|
|
>
|
|
|
</a-table>
|
|
@@ -236,6 +236,9 @@ export default {
|
|
|
open:false,
|
|
|
// 分页
|
|
|
pagination: {
|
|
|
+ pageSizeOptions: ["10","50", "100", "150"],
|
|
|
+ showSizeChanger: true,
|
|
|
+ pageSize:10
|
|
|
// total: '',
|
|
|
// current: 0,
|
|
|
// pageSize: 0
|
|
@@ -274,6 +277,7 @@ export default {
|
|
|
current: res.result.current,
|
|
|
pageSize: res.result.size
|
|
|
}
|
|
|
+ debugger
|
|
|
}
|
|
|
})
|
|
|
})
|
|
@@ -402,6 +406,7 @@ export default {
|
|
|
this.isorter.order = sorter.order == 'ascend' ? 'asc' : 'desc'
|
|
|
}
|
|
|
this.queryParam.pageNo = pagination.current
|
|
|
+ this.queryParam.pageSize = pagination.pageSize
|
|
|
this.getSupplyCapList()
|
|
|
}
|
|
|
}
|