feige
2024-11-08 fcd9788f561b8b81bf5aa45bbc3db035b9786f2c
ruoyi-ui/src/api/doctor/index.js
@@ -88,18 +88,20 @@
  })
}
// 查看分享给谁了什么数据
export function shareToWho(data) {
export function shareToWho(data,query) {
  return request({
    url: '/ZfDoctorShare/getInfoByUserId',
    method: 'post',
    data: data
    data: data,
    params: query
  })
}
// 查看谁分享了数据
export function getWhoShare() {
export function getWhoShare(query) {
  return request({
    url: '/ZfDoctorShare/getInfoByShareId',
    method: 'get',
    params: query
  })
}
// 下载分享的数据
@@ -119,10 +121,11 @@
  })
}
// 展示下载的数据
export function showShareData() {
export function showShareData(query) {
  return request({
    url: '/ZfDoctorShare/all',
    method: 'get'
    method: 'get',
    params: query
  })
}