| File was renamed from src/api/article/articleComment.js |
| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/page', |
| | | url: '/ssoapi/blade-articleComment/articleComment/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | } |
| | | export const getPageList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/pageWeb', |
| | | url: '/ssoapi/blade-articleComment/articleComment/pageWeb', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | |
| | | export const getListWords = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/pageWords', |
| | | url: '/ssoapi/blade-articleComment/articleComment/pageWords', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | |
| | | export const remove = (ids) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/remove', |
| | | url: '/ssoapi/blade-articleComment/articleComment/remove', |
| | | method: 'post', |
| | | params: { |
| | | ids, |
| | |
| | | |
| | | export const add = (row) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/submit', |
| | | url: '/ssoapi/blade-articleComment/articleComment/submit', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | |
| | | |
| | | export const update = (row) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/submit', |
| | | url: '/ssoapi/blade-articleComment/articleComment/submit', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | |
| | | |
| | | export const getNotice = (id) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/detail', |
| | | url: '/ssoapi/blade-articleComment/articleComment/detail', |
| | | method: 'get', |
| | | params: { |
| | | id |
| | |
| | | |
| | | export const upcomment = (ids, type) => { |
| | | return request({ |
| | | url: '/api/blade-articleComment/articleComment/upcomment', |
| | | url: '/ssoapi/blade-articleComment/articleComment/upcomment', |
| | | method: 'post', |
| | | params: { |
| | | ids, |