WXL
2024-07-04 0700456fd5717931c424c2e46552561716f1eb81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import request from "@/utils/request";
 
// 外链获取随访或问卷详情
export function getExternalfollowup(data) {
  return request({
    url: "/smartor/serviceTask/getScriptInfoByCondition",
    // url: "/smartor/servicetask/getScriptInfoByCondition",
    method: "post",
    data: data
  });
}
// 提交问卷、随访
export function SetsaveQuestionAnswer(data) {
  return request({
    url: "/smartor/ivrtaskcalldetail/saveQuestionAnswer",
    // url: "/smartor/serviceSubtask/saveQuestionAnswer",
    method: "post",
    data: data
  });
}