feige
2023-12-06 5703e99b943f17aa13f55a2f90308f66c1c2fe4f
ruoyi-ui/src/api/system/user.js
@@ -133,3 +133,28 @@
    method: 'get'
  })
}
//查看自己的权限
export function getSelfPermission(data) {
  return request({
    url: '/authority/condition',
    method: 'post',
    data: data
  })
}
//查看
export function getFamilyids(id) {
  return request({
    url: '/family/'+id ,
    method: 'get',
  })
}
//查看家庭信息
export function getAllFamilys(){
  return request({
    url: '/family/all' ,
    method: 'get',
  })
}