1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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
| });
| }
|
|