|
@@ -205,8 +205,16 @@ export default {
|
205
|
205
|
this.btnEvent("query");
|
206
|
206
|
}
|
207
|
207
|
},
|
208
|
|
- handleSizeChangeTask() {},
|
209
|
|
- handleCurrentChangeTask() {},
|
|
208
|
+ // 改变显示条数
|
|
209
|
+ handleSizeChangeTask(size) {
|
|
210
|
+ this.searchData.current = size;
|
|
211
|
+ this.btnEvent("query");
|
|
212
|
+ },
|
|
213
|
+ // 改变显示页数
|
|
214
|
+ handleCurrentChangeTask(current) {
|
|
215
|
+ this.searchData.current = current;
|
|
216
|
+ this.btnEvent("query");
|
|
217
|
+ },
|
210
|
218
|
closeDialog(data) {
|
211
|
219
|
if (data) {
|
212
|
220
|
this.btnEvent("query");
|