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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| import request from "@/utils/request";
|
| // 外链获取随访
| export function getExternalfollowup(data) {
| return request({
| url: "/smartor/servicetask/getScriptInfoByCondition",
| // url: "/servicetask/getScriptInfoByCondition",
| method: "post",
| data: data,
| });
| }
| // 短链接解析
| export function geturlinfo(id) {
| return request({
| url: "/smartor/outPath/getInfoByParam",
| method: "post",
| params: { param: id },
| });
| }
|
| // 创建任务生成外链
| export function scanGenerateSubtask(data) {
| return request({
| url: "/smartor/serviceSubtask/scanGenerateSubtask",
| method: "post",
| data: data,
| });
| }
| export function goSfRelay(data) {
| return request({
| url: "/smartor/serviceSubtask/goSfRelay",
| method: "post",
| params: 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,
| });
| }
|
| // 提交问卷(内)
| export function getsearchrResult(data) {
| return request({
| url: "/smartor/subtaskAnswer/selectPatQuestionResult",
| method: "post",
| data: data,
| });
| }
| // 获取问卷(内)
| export function getsearchrResults(data) {
| return request({
| url: "/smartor/subtaskAnswer/selectPatQuestionResult",
| method: "post",
| data: data,
| });
| }
| // 获取语音服务(内)
| export function getPersonVoices(data) {
| return request({
| url: "/smartor/serviceSubtaskDetail/getPersonVoice",
| method: "post",
| data: data,
| });
| }
| // 更新语音服务(内)
| export function updatePersonVoices(data) {
| return request({
| url: "/smartor/serviceSubtaskDetail/batchEdit",
| method: "post",
| data: data,
| });
| }
| // 更新语音服务(内)
| export function addPersonVoices(data) {
| return request({
| url: "/smartor/serviceSubtaskDetail/batchAdd",
| method: "post",
| data: data,
| });
| }
| // 获取360系统token
| export function gitzerotoken(data) {
| return request({
| url: "https://9.0.124.104:13021/mediinfo-lyra-authserver/connect/token",
| method: "post",
| data: data,
| });
| }
| // 再次随访服务
| export function addserviceSubtask(data) {
| return request({
| url: "/smartor/serviceSubtask/addSubTaskAgain",
| method: "post",
| data: data,
| });
| }
| // 再次随访服务
| export function addSubtask(data) {
| return request({
| url: "/smartor/serviceSubtask/addSubTask",
| method: "post",
| data: data,
| });
| }
|
|