WXL (wul)
4 天以前 93bc6ed9fbed8472be7b393334855743d09940f8
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",
  });
}