This commit is contained in:
2025-11-03 13:40:27 +08:00
parent 64426e6834
commit f1daab1193
10 changed files with 124 additions and 82 deletions

View File

@@ -1,35 +1,41 @@
import { post, get } from '../../utils/request.js'
import request from '@/utilsRc/request'
// 登录方法
export function personInfoList(data) {
return get({
url: 'personnel/personBaseInfo/list',
return request({
method: 'get',
url: '/personnel/personBaseInfo/list',
params: data,
})
}
// 需求预警列表
export function personAlertList(params) {
return get({
url: 'manage/personDemand/warningList',
return request({
method: 'get',
url: '/manage/personDemand/warningList',
params
})
}
//经办人数据获取
export function getJbrInfo() {
return get({
return request({
method: 'get',
url: `system/center/user/selectHxjbr`,
method: 'get'
})
}
export function getPersonBase() {
return get({
return request({
method: 'get',
url: `system/center/user/selectHxjbr`,
method: 'get'
})
}
export function returnPerson(params) {
return get({
return request({
method: 'get',
'url': `/personnel/personBaseInfo/returnPerson`,
params