WXL (wul)
昨天 feb5a669dced68415bc7e32f237f77bf9842fe8b
src/api/system/user.js
@@ -94,17 +94,26 @@
    data: data,
  });
}
// 满意度明细查询
export function getSfStatisticsJoydetails(data) {
// 满意度统计
export function getSfStatisticsJoy(data) {
  return request({
    url: "/smartor/serviceSubtask/getSfStatisticsJoydetails",
    url: "/smartor/serviceSubtask/getSfStatisticsCount",
    method: "post",
    data: data,
  });
}// 满意度统计
export function getSfStatisticsJoy(data) {
}
// 延续护理统计
export function getContinueNerseCount(data) {
  return request({
    url: "/smartor/serviceSubtask/getSfStatisticsJoy",
    url: "/smartor/serviceSubtask/getContinueNerseCount",
    method: "post",
    data: data,
  });
}
// 满意度统计详情
export function getSfStatisticsJoyInfo(data) {
  return request({
    url: "/smartor/serviceSubtask/getSfStatisticsCountDetails",
    method: "post",
    data: data,
  });
@@ -119,7 +128,7 @@
}
// 任务随访率统计表的下钻明细
// sendstate = 2 待随访 5 待随访失败
// sendstate = 2 待随访 5 待随访失败
// preachform = 任务形式(1,人工 2,纸质  3,电话  4,短信  5.微信公众号 6.微信小程序 7.支付宝小程序  8.智能机器人  9.钉钉)
export function querySubtaskList(data) {
  return request({
@@ -168,7 +177,7 @@
  });
}
// 保存授权角色
export function removeusertd(userid,deptcode) {
export function removeusertd(userid, deptcode) {
  return request({
    url: "/smartor/userdept/removeByCode/" + userid + "/" + deptcode,
    method: "get",
@@ -178,8 +187,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",
@@ -195,3 +204,35 @@
    data: data,
  });
}
// 省立同德满意度统计页题目明细
export function statistics(data) {
  return request({
    url: "/smartor/satisfaction/statistics",
    method: "post",
    data: data,
  });
}
// 省立同德满意度统计页题目明细
export function satisfactionGraph(data) {
  return request({
    url: "/smartor/satisfaction/satisfactionGraph",
    method: "post",
    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,
  });
}