系统多岗部门人员查询

This commit is contained in:
shijing 2023-03-16 10:08:12 +08:00
parent 60d6e00f2b
commit 0b4a4cdd92
2 changed files with 2 additions and 2 deletions

View File

@ -203,7 +203,7 @@
getOneData(id){ getOneData(id){
let that = this; let that = this;
return new Promise((resolve,reject)=>{ return new Promise((resolve,reject)=>{
that.$API.hrm.clock_record.list.req({page:1,page_size:400,year:that.query.year,month:that.query.month,employee:id}) that.$API.hrm.clock_record.list.req({page:1,page_size:499,type__in:'10,20',year:that.query.year,month:that.query.month,employee:id})
.then(res=>{ .then(res=>{
resolve(res.results) resolve(res.results)
}) })

View File

@ -415,7 +415,7 @@ export default {
groupClick(data) { groupClick(data) {
console.log(data); console.log(data);
// debugger; // debugger;
this.$refs.table.queryData({ belong_dept: data.id }); this.$refs.table.queryData({ depts: data.id });
}, },
// //
handleQuery() { handleQuery() {