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
| import request from "@/utils/request";
|
| // 查询随访问题列表
| export function getverbaltricklist(data) {
| return request({
| url: "/smartor/script/list",
| method: "post",
| data: data,
| });
| }
| // 随访问题详情
| export function verbaltrickinfo(Id) {
| return request({
| url: "/smartor/script/getInfo/" + Id,
| method: "get",
| });
| }
| // 删除随访问题
| export function delverbaltrickinfo(Id) {
| return request({
| url: "/smartor/script/remove/" + Id,
| method: "get",
| });
| }
| // 新增或修改随访问题
| export function compileverbaltrick(data) {
| return request({
| url: "/smartor/script/saveOrUpdateScript",
| method: "post",
| data: data,
| });
| }
| // 查询随访问题详情列表
| export function getverbaltrick(data) {
| return request({
| url: "/smartor/script/selectInfoByCondition",
| method: "post",
| data: data,
| });
| }
| // 修改随访问题分类
| export function compileverbaltrickclassify(data) {
| return request({
| url: "/smartor/scriptassort/edit",
| method: "post",
| data: data,
| });
| }
| // 新增随访问题分类
| export function addbaltrickclassify(data) {
| return request({
| url: "/smartor/scriptassort/addtree",
| method: "post",
| data: data,
| });
| }
| // 删除随访问题分类
| export function delbaltrickclassify(Id) {
| return request({
| url: "/smartor/scriptassort/remove/" + Id,
| method: "get",
| });
| }
| // 查询随访问题分类树
| export function getbaltrickclassify(data) {
| return request({
| url: "/smartor/scriptassort/selectIvrLibaScriptAssortList",
| method: "post",
| data: data,
| });
| }
|
|