| | |
| | | import request from "@/utils/request"; |
| | | |
| | | // 随访模版详情 |
| | | export function getExternalfollowup(taskid,patid) { |
| | | // 外链获取随访或问卷详情 |
| | | export function getExternalfollowup(data) { |
| | | return request({ |
| | | url: "/smartor/ivrtask/getScriptInfoByCondition/" + taskid+'/'+patid, |
| | | method: "get", |
| | | 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 |
| | | }); |
| | | } |