ESC任务员工选择,限制只选择当前属地的

This commit is contained in:
wangchengming 2025-10-16 14:43:14 +08:00
parent 905ed5148f
commit 907d7adb66
2 changed files with 8 additions and 7 deletions

View File

@ -191,7 +191,7 @@ export const dynamicRoutes = [
meta: { title: 'ESC标签查看详情' }
}
]
},
},
{
path: '/lable/viewDetail',
component: Layout,
@ -402,7 +402,7 @@ export const dynamicRoutes = [
meta: { title: '审核员审批', activeMenu: '/safetyReview/examinerApproval' }
}
]
},
},
{
path: '/safetyReview/examinerDetailForm',
component: Layout,
@ -445,7 +445,7 @@ export const dynamicRoutes = [
}
]
},
{
path: '/safetyReview/safetyDashboardDitail',
component: Layout,
@ -478,7 +478,7 @@ export const dynamicRoutes = [
path: '/databaseLibaryForm',
component: Layout,
hidden: true,
permissions: ['databaseLibary:edit', 'databaseLibary:orgUpdate'],
permissions: ['databaseLibary:add', 'databaseLibary:edit', 'databaseLibary:orgUpdate'],
children: [
{
path: ':Id(\\d+)?',

View File

@ -169,10 +169,11 @@ const getAllUser = () => {
listUser({
status: '0',
pageNum: 1,
pageSize: 5000
pageSize: 5000,
dependencyId: userStore.dependencyId
}).then(res => {
allUsers.value = res.rows
queryParams.value.userId = userStore.id
queryParams.value.userId = userStore.id
getUserQualification();
})
}
@ -194,7 +195,7 @@ const handleQuery = () => {
/** 重置按钮操作 */
const resetQuery = () => {
queryParams.value.userId = userStore.id
queryParams.value.userId = userStore.id
proxy.resetForm("queryRef")
handleQuery()
}