|
|
@@ -53,13 +53,12 @@
|
|
|
<div style="float: right">
|
|
|
<el-pagination
|
|
|
background
|
|
|
- small
|
|
|
- style="text-align: right;"
|
|
|
@size-change="handleSizeChange"
|
|
|
@current-change="handleCurrentChange"
|
|
|
:current-page="params.content.pageNumber"
|
|
|
- :page-size="params.content.pageSize"
|
|
|
- layout="total, prev, pager, next, jumper"
|
|
|
+ :page-sizes="[20, 50, 100, 200]"
|
|
|
+ :page-size="100"
|
|
|
+ layout="total,sizes, prev, pager, next, jumper"
|
|
|
:total="total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
@@ -97,7 +96,8 @@ export default {
|
|
|
tablecols:[],
|
|
|
total:0,
|
|
|
editIndex:'',
|
|
|
- totalPrice:0
|
|
|
+ totalPrice:0,
|
|
|
+ currentPage:0
|
|
|
};
|
|
|
},
|
|
|
computed:{
|