WXL
2024-06-05 f488fea65d0c0e96fb3e3c3ec835e4f324d11caa
src/api/AiCentre/external.js
@@ -1,9 +1,17 @@
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/ivrtask/getScriptInfoByCondition",
    method: "post",
    data: data
  });
}
export function SetsaveQuestionAnswer(data) {
  return request({
    url: "/smartor/ivrtaskcalldetail/saveQuestionAnswer",
    method: "post",
    data: data
  });
}