WXL (wul)
2 天以前 d3c60e18b95b50751f8088fa2d23cd8ff7f173bc
src/api/system/user.js
@@ -94,10 +94,26 @@
    data: data,
  });
}
// 专病统计查询
export function getSpecialSfStatistics(data) {
  return request({
    url: "/smartor/serviceSubtask/getSpecialSfStatistics",
    method: "post",
    data: data,
  });
}
// 满意度统计
export function getSfStatisticsJoy(data) {
  return request({
    url: "/smartor/serviceSubtask/getSfStatisticsCount",
    method: "post",
    data: data,
  });
}
// 延续护理统计
export function getContinueNerseCount(data) {
  return request({
    url: "/smartor/serviceSubtask/getContinueNerseCount",
    method: "post",
    data: data,
  });
@@ -169,7 +185,7 @@
  });
}
// 保存授权角色
export function removeusertd(userid,deptcode) {
export function removeusertd(userid, deptcode) {
  return request({
    url: "/smartor/userdept/removeByCode/" + userid + "/" + deptcode,
    method: "get",
@@ -179,8 +195,8 @@
// 查询部门下拉树结构
export function deptTreeSelect(type) {
  const data = {
    deptType:type,
    orgid:localStorage.getItem("orgid"),
    deptType: type,
    orgid: localStorage.getItem("orgid"),
  };
  return request({
    url: "/system/user/deptTree",
@@ -212,3 +228,19 @@
    data: data,
  });
}
// 省立同德维度题目明细
export function statisticsByDimension(data) {
  return request({
    url: "/smartor/satisfaction/statisticsByDimension",
    method: "post",
    data: data,
  });
}
// 省立同德维度柱状图
export function satisfactionGraphDimension(data) {
  return request({
    url: "/smartor/satisfaction/satisfactionGraphDimension",
    method: "post",
    data: data,
  });
}