|
@@ -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",
|
|
|
+ });
|
|
|
}
|