| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-system/post/list', |
| | | url: '/api/-system/post/list', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | |
| | | export const getPostList = (tenantId) => { |
| | | return request({ |
| | | url: '/api/blade-system/post/select', |
| | | url: '/api/-system/post/select', |
| | | method: 'get', |
| | | params: { |
| | | tenantId |
| | |
| | | |
| | | export const getDetail = (id) => { |
| | | return request({ |
| | | url: '/api/blade-system/post/detail', |
| | | url: '/api/-system/post/detail', |
| | | method: 'get', |
| | | params: { |
| | | id |
| | |
| | | |
| | | export const remove = (ids) => { |
| | | return request({ |
| | | url: '/api/blade-system/post/remove', |
| | | url: '/api/-system/post/remove', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | |
| | | |
| | | export const add = (row) => { |
| | | return request({ |
| | | url: '/api/blade-system/post/submit', |
| | | url: '/api/-system/post/submit', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | |
| | | |
| | | export const update = (row) => { |
| | | return request({ |
| | | url: '/api/blade-system/post/submit', |
| | | url: '/api/-system/post/submit', |
| | | method: 'post', |
| | | data: row |
| | | }) |