flat: 增加重点人群服务下人员服务日志

This commit is contained in:
yangxiao
2025-11-26 11:55:05 +08:00
parent 1726e353d1
commit 2dd075c9b4
3 changed files with 684 additions and 2 deletions

View File

@@ -409,7 +409,7 @@ export default {
checkStrictly: true,
search: true,
span: 20,
hide: true,
// hide: true,
searchLabelWidth: 80,
searchSpan: 8,
},
@@ -939,7 +939,12 @@ export default {
},
serveSearchChange(params, done) {
this.page.currentPage = 1;
this.query = params
let newObj = Object.assign({}, params);
if (params.companyName) {
newObj.deptId = params.companyName
delete newObj.companyName;
}
this.query = newObj
this.onLoad(this.page, this.query);
done();
},