WXL (wul)
9 天以前 8a8cbdb9366873aac26ef565f797100dd289d51e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import request from "@/utils/request";
 
// 外链获取随访
export function getScriptByCondition(data) {
  return request({
    url: "/smartor/servicetask/getScriptByCondition",
    method: "post",
    data: data
  });
}
 
 
 
// 缓存问卷
export function saveMYDQuestionAnswer(data) {
  return request({
    url: "/smartor/subtaskAnswer/saveMYDQuestionAnswer",
    method: "post",
    data: data
  });
}
// 缓存问卷
export function WLgetDept(orgid) {
  return request({
    url: "/getDept/" + orgid,
    method: "get",
  });
}