feige
2024-02-02 bd40473c9c634005bc7e62e7fc901bcd8b598fa0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import request from '@/utils/request'
 
// 根据id查询个人详细信息
export function getIndividualInfo(id) {
  return request({
    url: '/self/user' ,
    method: 'get',
 
  })
}
 
// 查看用户主要成员关系
export function getIndividualRelation(Id) {
  return request({
    url: '/self/user/relation' + Id,
    method: 'get',
 
  })
}
 
// 删除个人信息
export function delIndividual(Ids) {
  return request({
    url: '/self/user' + Ids,
    method: 'delete'
  })
}
 
//更新个人信息
export function updateIndividual(data) {
  return request({
    url: '/self/user',
    method: 'put',
    data: data
  })
}
 
//增加个人信息
export function addIndividual(data)
{
  return request({
    url: '/self/user',
    method: 'post',
    data: data
  })
}