Compare commits

...

3 Commits

Author SHA1 Message Date
lwd 0b4c283d9c 1.修复获取严重违法市局人员问题 2026-01-05 09:26:54 +08:00
lwd a4d64070ff Merge branch 'master' of http://47.107.61.133:3000/nm-project/aiccs
# Conflicts:
#	build/increpack.js
2026-01-05 09:08:27 +08:00
lwd a3ac94db39 1.提交创建配置 2026-01-05 09:07:53 +08:00
2 changed files with 23 additions and 2 deletions

View File

@ -141,3 +141,24 @@ export function logManage(params) {
params params
}) })
} }
/**
* 通过权限查找用户
* @param {string} permission 权限标识
* @param {string} orgId 机构id 非必填
* @param {string} deptId 部门id 非必填
* @author lwd
* @since 2025年1月5日 09:22:20
*/
export function getUsersWithPermissionYzwf(permission, orgId, deptId) {
return request({
// url: '/user/get_users_with_permission',
url: '/user/listUserByPermissionAndOrgIdsYzwf',
method: 'get',
params: {
permission,
orgId,
isArea: true
}
})
}

View File

@ -331,7 +331,7 @@
import DetailHead from '@/components/DetailHead' import DetailHead from '@/components/DetailHead'
import { removeAttachementById, listAttachmentByBizseq } from '@/api/attachment' import { removeAttachementById, listAttachmentByBizseq } from '@/api/attachment'
import { cppenaltyInfoGsGetById, listIllegalByBizSeq, nextProcessInclude } from '@/api/illegal' import { cppenaltyInfoGsGetById, listIllegalByBizSeq, nextProcessInclude } from '@/api/illegal'
import { getUsersWithPermission } from '@/api/user' import {getUsersWithPermission, getUsersWithPermissionYzwf} from '@/api/user'
import { taskOpinion } from '@/api/task' import { taskOpinion } from '@/api/task'
import { getConstant } from '@/api/system' import { getConstant } from '@/api/system'
import { getEntBaseByPripid } from '@/api/entBase' import { getEntBaseByPripid } from '@/api/entBase'
@ -658,7 +658,7 @@ export default {
}, },
// //
loadReviewer() { loadReviewer() {
getUsersWithPermission('acceptSerIllegal', '001').then(res => { getUsersWithPermissionYzwf('acceptSerIllegal', '001').then(res => {
if (res.code === 0) { if (res.code === 0) {
this.reviewer = res.data this.reviewer = res.data
} }