Browse Source

接口更改

gks 1 year ago
parent
commit
b9fcf00489
1 changed files with 23 additions and 19 deletions
  1. 23 19
      src/api/system/notice.js

+ 23 - 19
src/api/system/notice.js

@@ -1,44 +1,48 @@
-import request from '@/utils/request'
+import request from "@/utils/request";
 
 // 查询公告列表
 export function listNotice(query) {
   return request({
-    url: '/system/notice/list',
-    method: 'get',
-    params: query
-  })
+    url: "/system/notice/list",
+    method: "get",
+    params: query,
+  });
 }
 
 // 查询公告详细
 export function getNotice(noticeId) {
   return request({
-    url: '/system/notice/getInfo/' + noticeId,
-    method: 'get'
-  })
+    url: "/system/notice/getInfo/" + noticeId,
+    method: "get",
+  });
 }
 
 // 新增公告
 export function addNotice(data) {
+  let dataStr = data.noticeContent;
+  data.noticeContent = null;
   return request({
-    url: '/system/notice/add',
-    method: 'post',
-    data: data
-  })
+    url: "/system/notice/add?noticeContent=" + dataStr,
+    method: "post",
+    data: data,
+  });
 }
 
 // 修改公告
 export function updateNotice(data) {
+  let dataStr = data.noticeContent;
+  data.noticeContent = null;
   return request({
-    url: '/system/notice/edit',
-    method: 'post',
-    data: data
-  })
+    url: "/system/notice/edit?noticeContent=" + dataStr,
+    method: "post",
+    data: data,
+  });
 }
 
 // 删除公告
 export function delNotice(noticeId) {
   return request({
-    url: '/system/notice/remove/' + noticeId,
-    method: 'get'
-  })
+    url: "/system/notice/remove/" + noticeId,
+    method: "get",
+  });
 }