张钢
2024-08-25 137ba1e558a42ce633efc9ef3dd5f047320e787b
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
  })
}