This commit is contained in:
shijing 2023-12-21 14:33:22 +08:00
commit c95c7134d7
3 changed files with 5 additions and 18 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;

View File

@ -133,14 +133,7 @@ import memberDialog from "./team_form.vue";
//
getDeptData() {
this.$API.system.dept.list.req({ page: 0,type:'dept'}).then(res=>{
let data = [];
res.forEach(item => {
if(item.parent=='3423856735881117696'){
data.push(item)
}
});
console.log(data)
this.deptData = data;
this.deptData = res;
});
},
//