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,15 +1,22 @@
/*
* @Date: 2025-10-31 11:06:15
* @LastEditors: shirlwang
* @LastEditTime: 2025-11-03 10:28:27
*/
// 人员接口
import { post, get } from '../../utils/request.js'
import request from '@/utilsRc/request'
export function getPersonBase(params) {
return get({
url: 'personnel/personBaseInfo/list',
return request({
url: '/personnel/personBaseInfo/list',
method: 'get',
params
})
}
export function getPersonList(params) {
return get({
url: 'personnel/personBaseInfo/list',
return request({
url: '/personnel/personBaseInfo/list',
method: 'get',
params
})
@@ -18,9 +25,9 @@ export function getPersonList(params) {
// 新增角色
export function addInvestigate(data) {
return post({
// url: '/process/processInterview',
url: '/timelime/timelime',
return request({
// url: '//process/processInterview',
url: '//timelime/timelime',
method: 'post',
data: data
})