Commit b771882b authored by guoyou's avatar guoyou

员工管理

parent ae70a2d4
......@@ -160,3 +160,21 @@ export function getOne(id) {
method: 'get',
});
}
// 员工变更记录
export function findPositionChangeRecord(params) {
return fetch({
url: 'api/admin/postion/admin/findPositionChangeRecord',
method: 'get',
params: params
});
}
// 员工修改
export function updUserChange(params) {
return fetch({
url: 'api/admin/postion/admin/updUserChange',
method: 'post',
data: params
});
}
\ No newline at end of file
......@@ -555,12 +555,6 @@ export const asyncRouterMap = [{
component: _import('userManagement/imCustomerServiceManger/cusomterServiceList'),
name: '客服列表',
authority: 'imCustomerServiceManger'
},
{
path: 'employeesInput',
component: _import('userManagement/employeesInput'),
name: '员工录入',
authority: 'employeesInput'
}
]
},
......@@ -794,5 +788,20 @@ export const asyncRouterMap = [{
authority: 'vehicleStatistics'
}
]
},
{
path: '/interior',
component: Layout,
name: '内部人员管理',
icon: 'setting',
authority: 'interior',
children: [
{
path: 'employeesInput',
component: _import('interior/employeesInput'),
name: '员工录入',
authority: 'employeesInput'
}
]
}
];
......@@ -260,8 +260,6 @@ export default {
* 操作-编辑
* */
handleUpdate(row) {
console.log(objDeepCopy);
this.modalTitle = '编辑'
this.form = objDeepCopy(row)
this.bannerDialogVisible = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment