linwenling
2023-09-26 039aa6bf6fb6c43209f4a452a62b17833d36f27e
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
  })
}