fix: 到岗记录获取部门错误
This commit is contained in:
parent
d4094d3607
commit
a3670056ae
|
|
@ -1882,7 +1882,7 @@ const routes = [
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "到岗记录",
|
"title": "到岗记录",
|
||||||
"icon": "el-icon-check",
|
"icon": "el-icon-check",
|
||||||
"perms": ["attendance_record"]
|
"perms": ["attendance"]
|
||||||
},
|
},
|
||||||
"component": "hrm/attendance"
|
"component": "hrm/attendance"
|
||||||
},
|
},
|
||||||
|
|
@ -1892,7 +1892,7 @@ const routes = [
|
||||||
"meta": {
|
"meta": {
|
||||||
"title": "绩效考核",
|
"title": "绩效考核",
|
||||||
"icon": "el-icon-check",
|
"icon": "el-icon-check",
|
||||||
"perms": ["attendance_record"]
|
"perms": ["kpi"]
|
||||||
},
|
},
|
||||||
"component": "hrm/performance"
|
"component": "hrm/performance"
|
||||||
},
|
},
|
||||||
|
|
@ -1903,7 +1903,7 @@ const routes = [
|
||||||
"title": "相关证书",
|
"title": "相关证书",
|
||||||
"icon": "el-icon-menu",
|
"icon": "el-icon-menu",
|
||||||
"hidden": true,
|
"hidden": true,
|
||||||
"perms": ["employee"]
|
"perms": ["certificate"]
|
||||||
|
|
||||||
},
|
},
|
||||||
"component": "hrm/certificate"
|
"component": "hrm/certificate"
|
||||||
|
|
|
||||||
|
|
@ -169,13 +169,7 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
getShiftOptions() {
|
getShiftOptions() {
|
||||||
this.$API.system.dept.list.req({ page: 0, type: 'dept' }).then(res => {
|
this.$API.system.dept.list.req({ page: 0, type: 'dept' }).then(res => {
|
||||||
let data = [];
|
this.deptOptions = res;
|
||||||
res.forEach(item => {
|
|
||||||
if (item.parent == '3423856735881117696') {
|
|
||||||
data.push(item)
|
|
||||||
}
|
|
||||||
});
|
|
||||||
this.deptOptions = data;
|
|
||||||
});
|
});
|
||||||
this.$API.mtm.shift.list.req({ page: 0 }).then(res => {
|
this.$API.mtm.shift.list.req({ page: 0 }).then(res => {
|
||||||
this.shiftOptions = res;
|
this.shiftOptions = res;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue