linwenling
2023-10-22 f5b32fb3ccaea79ee63a63671598eee0c994c25f
ruoyi-ui/src/api/selfeconomy/index.js
@@ -13,11 +13,11 @@
// 根据id查询所有个人财产信息
export function getSelfEconomyInfo(id) {
export function getSelfEconomyInfo(queryParameters) {
  return request({
    url: '/zProperty/'+ id,
    url: '/zProperty',
    method: 'get',
    params: query
    params: queryParameters
  })
}
//新增
@@ -63,5 +63,13 @@
    responseType: 'blob'
  })
}
//上传文件
export function enload(data) {
  return request({
    url: '/zProperty/importData',
    method: 'post',
    data: data
  })
}