Files

43 lines
837 B
JavaScript
Raw Permalink Normal View History

2025-10-31 09:30:04 +08:00
import { post, get } from '../../utils/request.js'
2025-11-03 13:40:27 +08:00
import request from '@/utilsRc/request'
2025-10-31 09:30:04 +08:00
// 登录方法
export function personInfoList(data) {
2025-11-03 13:40:27 +08:00
return request({
method: 'get',
url: '/personnel/personBaseInfo/list',
2025-10-31 09:30:04 +08:00
params: data,
})
}
// 需求预警列表
export function personAlertList(params) {
2025-11-03 13:40:27 +08:00
return request({
method: 'get',
url: '/manage/personDemand/warningList',
2025-10-31 09:30:04 +08:00
params
})
}
//经办人数据获取
export function getJbrInfo() {
2025-11-03 13:40:27 +08:00
return request({
method: 'get',
2025-10-31 09:30:04 +08:00
url: `system/center/user/selectHxjbr`,
method: 'get'
})
}
2025-10-31 18:43:06 +08:00
export function getPersonBase() {
2025-11-03 13:40:27 +08:00
return request({
method: 'get',
2025-10-31 18:43:06 +08:00
url: `system/center/user/selectHxjbr`,
method: 'get'
})
}
export function returnPerson(params) {
2025-11-03 13:40:27 +08:00
return request({
method: 'get',
2025-10-31 18:43:06 +08:00
'url': `/personnel/personBaseInfo/returnPerson`,
params
})
}