fix: 到岗记录获取部门错误

This commit is contained in:
caoqianming 2023-12-21 14:08:53 +08:00
parent d4094d3607
commit a3670056ae
2 changed files with 4 additions and 10 deletions

View File

@ -1882,7 +1882,7 @@ const routes = [
"meta": {
"title": "到岗记录",
"icon": "el-icon-check",
"perms": ["attendance_record"]
"perms": ["attendance"]
},
"component": "hrm/attendance"
},
@ -1892,7 +1892,7 @@ const routes = [
"meta": {
"title": "绩效考核",
"icon": "el-icon-check",
"perms": ["attendance_record"]
"perms": ["kpi"]
},
"component": "hrm/performance"
},
@ -1903,7 +1903,7 @@ const routes = [
"title": "相关证书",
"icon": "el-icon-menu",
"hidden": true,
"perms": ["employee"]
"perms": ["certificate"]
},
"component": "hrm/certificate"

View File

@ -169,13 +169,7 @@ export default {
methods: {
getShiftOptions() {
this.$API.system.dept.list.req({ page: 0, type: 'dept' }).then(res => {
let data = [];
res.forEach(item => {
if (item.parent == '3423856735881117696') {
data.push(item)
}
});
this.deptOptions = data;
this.deptOptions = res;
});
this.$API.mtm.shift.list.req({ page: 0 }).then(res => {
this.shiftOptions = res;