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
73
74
75
76
77
78
79
80
| 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/saveOrUpdateHeLibrary",
| method: "post",
| data: data,
| });
| }
| // 新增或修改宣教模板
| export function getcompiletask(data) {
| return request({
| url: "/smartor/heTaskSingle/queryHeTaskByCondition",
| method: "post",
| data: data,
| });
| }
| export function addrichText(data) {
| return request({
| url: "/common/htmlContent",
| method: "post",
| data: data,
| });
| }
| // 新增宣教模板分类树
| export function addheLibraryAssort(data) {
| return request({
| url: "/smartor/heLibraryAssort/addtree",
| method: "post",
| data: data,
| });
| }
| // 新增宣教模板分类树
| export function editheLibraryAssort(data) {
| return request({
| url: "/smartor/heLibraryAssort/edit",
| 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,
| });
| }
|
|