缺件申报数据处理

dev-scheduling
zhangdi 2 months ago
parent 48374a69a3
commit 0f750e2028
  1. 23
      src/views/procurementManagement/shortageApplication.vue

@ -42,6 +42,7 @@ export default {
}, },
data() { data() {
return { return {
loading: false,
declareAddShow: false, declareAddShow: false,
selectionList: [], selectionList: [],
option: { option: {
@ -250,6 +251,28 @@ export default {
}); });
}); });
}, },
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page, this.query);
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page, this.query);
},
refreshChange() {
this.onLoad(this.page, this.query);
},
searchReset() {
this.query = {};
this.treeDeptId = '';
this.onLoad(this.page, this.query);
},
searchChange(params, done) {
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
// //
selectionChange(list) { selectionChange(list) {
this.selectionList = list; this.selectionList = list;

Loading…
Cancel
Save