yz3456
2024-04-25 79d870e1d8c88c01fa5075e3fb30ad9f0b6f37f7
ruoyi-ui/src/api/wish/index.js
@@ -10,12 +10,12 @@
}
// 根据id查询
export function getWish(id) {
export function getWish(queryParameters) {
  return request({
    url: '/zIdea/' + id,
    url: '/zIdea',
    method: 'get',
  })
    params: queryParameters
  });
}
//新增
@@ -48,7 +48,7 @@
//上传文件
export function uploadPic(data) {
  return request({
    url: '/common/upload',
    url: '/common/uploads',
    method: 'post',
    data: data
  })