From 907d7adb66149617632561c2fcd96d475c566677 Mon Sep 17 00:00:00 2001 From: wangchengming <15110151257@163.com> Date: Thu, 16 Oct 2025 14:43:14 +0800 Subject: [PATCH] =?UTF-8?q?ESC=E4=BB=BB=E5=8A=A1=E5=91=98=E5=B7=A5?= =?UTF-8?q?=E9=80=89=E6=8B=A9=EF=BC=8C=E9=99=90=E5=88=B6=E5=8F=AA=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E5=BD=93=E5=89=8D=E5=B1=9E=E5=9C=B0=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 8 ++++---- .../escTask/components/QualificationManage.vue | 7 ++++--- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 383460f..e3f4536 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -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+)?', diff --git a/src/views/qualification/escTask/components/QualificationManage.vue b/src/views/qualification/escTask/components/QualificationManage.vue index 9016f3c..381412f 100644 --- a/src/views/qualification/escTask/components/QualificationManage.vue +++ b/src/views/qualification/escTask/components/QualificationManage.vue @@ -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() }