import request from "@/utils/request"; // 查询随访模版列表 export function getFollowuplist(data) { return request({ url: "/smartor/template/list", method: "post", data: data, }); } // 随访模版详情 export function Followupinfo(Id) { return request({ url: "/smartor/template/" + Id, method: "get", }); } // 删除随访模版 export function delFollowupinfo(Id) { return request({ url: "/smartor/template/remove/" + Id, method: "get", }); } // 新增或修改随访模版 export function compileFollowup(data) { return request({ url: "/smartor/template/saveOrUpdateScript", method: "post", data: data, }); } // 查询随访模版详情列表 export function getvFollowup(data) { return request({ url: "/smartor/template/selectInfoByCondition", method: "post", data: data, }); } // 新增随访模版分类树 export function addFollowupclassify(data) { return request({ url: "/smartor/templateassort/addtree", method: "post", data: data, }); } // 新增随访模版分类树 export function editFollowupclassify(data) { return request({ url: "/smartor/templateassort/edit", method: "post", data: data, }); } // 删除随访模版分类 export function delFollowupclassify(Id) { return request({ url: "/smartor/templateassort/remove/" + Id, method: "get", }); } // 查询随访模版分类树 export function getFollowupclassify(data) { return request({ url: "/smartor/templateassort/selectIvrLibaTemplateAssortList", method: "post", data: data, }); }