更改地址使平台可以正常启动

This commit is contained in:
lip
2025-11-03 13:00:49 +08:00
parent 22cb414232
commit 8c25a3ab4f
7 changed files with 715 additions and 1 deletions

34
apiRc/needs/person.js Normal file
View File

@@ -0,0 +1,34 @@
/*
* @Date: 2025-10-31 11:06:15
* @LastEditors: lip
* @LastEditTime: 2025-11-03 12:48:30
*/
// 人员接口
// import { post, get } from '@/utilsRc/request'
import request from '@/utilsRc/request'
export function getPersonBase(params) {
return request({
url: '/personnel/personBaseInfo/list',
method: 'get',
params
})
}
export function getPersonList(params) {
return request({
url: '/personnel/personBaseInfo/list',
method: 'get',
params
})
}
// 新增角色
export function addInvestigate(data) {
return request({
// url: '//process/processInterview',
url: '//timelime/timelime',
method: 'post',
data: data
})
}