WXL
2024-06-17 43988e7dae93378116a8c5f1fc76f5568d8fd4b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import request from "@/utils/request";
 
// 随访模版详情
export function getExternalfollowup(data) {
  return request({
    url: "/smartor/ivrtask/getScriptInfoByCondition",
    method: "post",
    data: data
  });
}
export function SetsaveQuestionAnswer(data) {
  return request({
    url: "/smartor/ivrtaskcalldetail/saveQuestionAnswer",
    method: "post",
    data: data
  });
}