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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| 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
| });
| }
|
|
| // 缓存问卷
| export function Cachequestionnaire(data) {
| return request({
| url: "/smartor/subtaskAnswer/saveQuestionCache",
| method: "post",
| data: data
| });
| }
| // 拿缓存问卷
| export function getCachequestionnaire(data) {
| return request({
| url: "/smartor/subtaskAnswer/getQuestionCache",
| method: "post",
| data: data
| });
| }
| // 提交问卷
| export function Submitaquestionnaire(data) {
| return request({
| url: "/smartor/subtaskAnswer/saveQuestionAnswer",
| method: "post",
| data: data
| });
| }
|
|