You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
628 B
36 lines
628 B
|
3 weeks ago
|
import http from '@/http/api.js'
|
||
|
|
|
||
|
|
// 获取通知公告列表
|
||
|
|
export const getList = (params) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-desk/notice/list',
|
||
|
|
method: 'GET',
|
||
|
|
params
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export const remove = (ids) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-desk/notice/remove',
|
||
|
|
method: 'post',
|
||
|
|
params: {
|
||
|
|
ids,
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export const add = (row) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-desk/notice/submit',
|
||
|
|
method: 'post',
|
||
|
|
data: row
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export const update = (row) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-desk/notice/submit',
|
||
|
|
method: 'post',
|
||
|
|
data: row
|
||
|
|
})
|
||
|
|
}
|