Commit f023515c authored by 季圣华's avatar 季圣华
Browse files

优化关联单据和欠款单据列表

parent 0d643529
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
:pagination="ipagination" :pagination="ipagination"
:loading="loading" :loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type: getType}" :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type: getType}"
:customRow="rowAction"> :customRow="rowAction"
@change="handleTableChange">
</a-table> </a-table>
<!-- table区域-end --> <!-- table区域-end -->
</a-modal> </a-modal>
......
...@@ -52,9 +52,11 @@ ...@@ -52,9 +52,11 @@
rowKey="id" rowKey="id"
:columns="columns" :columns="columns"
:dataSource="dataSource" :dataSource="dataSource"
:pagination="ipagination"
:loading="loading" :loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type: getType}" :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type: getType}"
:customRow="rowAction"> :customRow="rowAction"
@change="handleTableChange">
</a-table> </a-table>
<!-- table区域-end --> <!-- table区域-end -->
</a-modal> </a-modal>
...@@ -155,6 +157,8 @@ ...@@ -155,6 +157,8 @@
} }
this.model = Object.assign({}, {}); this.model = Object.assign({}, {});
this.visible = true; this.visible = true;
this.ipagination.pageSize = 100
this.ipagination.pageSizeOptions = ['100', '200', '300']
this.loadData(1) this.loadData(1)
}, },
close () { close () {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment