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
| import request from "@/utils/request";
|
| // 查询通知列表
| export function listNotification(query) {
| return request({
| url: "/notificationManagement/getList",
| method: "get",
| params: query,
| });
| }
|
| // 新增通知
| export function addNotification(data) {
| return request({
| url: "/notificationManagement/add",
| method: "post",
| data: data,
| });
| }
| //新增会议
| export function addOnlineMeeting(data) {
| return request({
| url: "/notificationManagement/addOnlineMeeting",
| method: "post",
| data: data,
| });
| }
| //新增文件共享
| export function addFileSharing(data) {
| return request({
| url: "/notificationManagement/addFileSharing",
| method: "post",
| data: data,
| });
| }
|
| // 修改通知
| export function updateNotification(data) {
| return request({
| url: "/notificationManagement/update",
| method: "post",
| data: data,
| });
| }
|
| // 批量删除通知
| export function delNotification(query) {
| return request({
| url: "/notificationManagement/delete",
| method: "delete",
| data: query,
| });
| }
|
| // // 批量删除知识库
| // export function delKnowledgeBaseBatch(knowledgeBaseIds) {
| // return request({
| // url: "/knowledgeBase/batch",
| // method: "delete",
| // data: knowledgeBaseIds,
| // });
| // }
|
|