Compare commits
3 Commits
5b9ad5e343
...
0b4c283d9c
| Author | SHA1 | Date |
|---|---|---|
|
|
0b4c283d9c | |
|
|
a4d64070ff | |
|
|
a3ac94db39 |
|
|
@ -141,3 +141,24 @@ export function logManage(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
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -331,7 +331,7 @@
|
|||
import DetailHead from '@/components/DetailHead'
|
||||
import { removeAttachementById, listAttachmentByBizseq } from '@/api/attachment'
|
||||
import { cppenaltyInfoGsGetById, listIllegalByBizSeq, nextProcessInclude } from '@/api/illegal'
|
||||
import { getUsersWithPermission } from '@/api/user'
|
||||
import {getUsersWithPermission, getUsersWithPermissionYzwf} from '@/api/user'
|
||||
import { taskOpinion } from '@/api/task'
|
||||
import { getConstant } from '@/api/system'
|
||||
import { getEntBaseByPripid } from '@/api/entBase'
|
||||
|
|
@ -658,7 +658,7 @@ export default {
|
|||
},
|
||||
// 加载市局经办人
|
||||
loadReviewer() {
|
||||
getUsersWithPermission('acceptSerIllegal', '001').then(res => {
|
||||
getUsersWithPermissionYzwf('acceptSerIllegal', '001').then(res => {
|
||||
if (res.code === 0) {
|
||||
this.reviewer = res.data
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue