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
| import request from "@/utils/request";
|
| // 查询宣教模版列表
| export function getlibrarylist(data) {
| return request({
| url: "/smartor/library/list",
| method: "post",
| data: data,
| });
| }
|
| // 删除宣教模版
| export function dellibraryinfo(Id) {
| return request({
| url: "/smartor/library/remove/" + Id,
| method: "get",
| });
| }
| // 查询宣教模版详情列表
| export function getlibraryinfo(data) {
| return request({
| url: "/smartor/library/selectInfoByCondition",
| method: "post",
| data: data,
| });
| }
| // 新增或修改宣教模版
| export function compilelibrary(data) {
| return request({
| url: "/smartor/library/saveOrUpdateScript",
| method: "post",
| data: data,
| });
| }
| // 新增宣教模版分类树
| export function addheLibraryAssort(data) {
| return request({
| url: "/smartor/heLibraryAssort/addtree",
| method: "post",
| data: data,
| });
| }
| // 删除宣教模版分类
| export function delheLibraryAssort(Id) {
| return request({
| url: "/smartor/heLibraryAssort/remove/" + Id,
| method: "get",
| });
| }
| // 查询宣教模版分类树
| export function getheLibraryAssort(data) {
| return request({
| url: "/smartor/heLibraryAssort/selectHeLibraryAssortList",
| method: "post",
| data: data,
| });
| }
|
|
|
|