WXL
2023-12-28 2ef938e02a1c64c7e7c641d46a2db91e4cdd1b75
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
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 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,
    });
  }