This commit is contained in:
wuzhimiao
2025-10-31 09:30:04 +08:00
parent 577b20661a
commit e84b367360
151 changed files with 10747 additions and 17 deletions

View File

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