yz3456
2024-07-21 6669c680f79663fc220935d61c3f3f6eee078e7c
ruoyi-ui/src/api/doctor/index.js
@@ -88,18 +88,21 @@
  })
}
// 查看分享给谁了什么数据
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(data,query) {
  return request({
    url: '/ZfDoctorShare/getInfoByShareId',
    method: 'get',
    data: data,
    params: query
  })
}
// 下载分享的数据
@@ -119,10 +122,11 @@
  })
}
// 展示下载的数据
export function showShareData() {
export function showShareData(query) {
  return request({
    url: '/ZfDoctorShare/all',
    method: 'get'
    method: 'get',
    params: query
  })
}