feige
4 天以前 5cdf8a720624389ea1d4fecd8d3046979595ba64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import request from '@/utils/request'
 
// 查询所有家庭大事,分页查询
export function getModules(query) {
  return request({
    url: '/zPeopleSearch/all',
    method: 'get',
    params: query
  })
}
 
// 根据id查询所有家庭资产详细信息
export function searchPeople(query) {
 
  return request({
    url: '/search/universal',
    method: 'post',
    data: query,
      headers: {
        'Content-Type': 'application/json'
      }
  })
}