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
65
66
67
68
69
70
71
72
| 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,
| });
| }
|
|