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
616 B
36 lines
616 B
|
3 weeks ago
|
import http from '@/http/api.js'
|
||
|
|
|
||
|
|
// 部门管理
|
||
|
|
export const getList = (params) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-system/post/list',
|
||
|
|
method: 'GET',
|
||
|
|
params
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export const remove = (ids) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-system/post/remove',
|
||
|
|
method: 'post',
|
||
|
|
params: {
|
||
|
|
ids,
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export const add = (row) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-system/post/submit',
|
||
|
|
method: 'post',
|
||
|
|
data: row
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export const update = (row) => {
|
||
|
|
return http.request({
|
||
|
|
url: '/api/blade-system/post/submit',
|
||
|
|
method: 'post',
|
||
|
|
data: row
|
||
|
|
})
|
||
|
|
}
|