报工详情调整

dev-scheduling
zhangdi 2 months ago
parent 0cdf99040e
commit c3922782e0
  1. 2
      src/views/productionManagement/js/wordReporting.js
  2. 22
      src/views/productionManagement/workReportingManagement.vue

@ -165,7 +165,7 @@ export default {
}, },
{ {
label: '调整时间', label: '调整时间',
prop: 'adjustmentTime', prop: 'updateTime',
span: 24, span: 24,
overflow: true, overflow: true,
search: false, search: false,

@ -224,6 +224,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();
},
// //
onLoad(page, params = {}) { onLoad(page, params = {}) {
this.loading = true; this.loading = true;

Loading…
Cancel
Save