gaoluyang
3 天以前 d1448cb0ef10f358bb7bddb4e1ec268515e0b787
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '@/config/request.js';
 
// 获取通知公告列表
export const noticeList = (params) => request.get('/system/notice/list', params)
 
// 获取通知公告详情信息
export const noticeById = (id) => request.get('/system/notice/' + id)
 
// 新增通知公告详情信息
export const noticeAdd = (params) => request.post('/system/notice', params)
 
// 修改通知公告详情信息
export const noticeModify = (params) => request.put('/system/notice', params)
 
// 删除通知公告详情信息
export const noticeDelete = (id) => request.delete('/system/notice/' + id)