1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
-
- // 查询站点文章管理列表
- export function listArticle(query) {
- return request({
- url: '/system/article/list',
- method: 'get',
- params: query
- })
- }
-
- // 查询站点文章管理详细
- export function getArticle(id) {
- return request({
- url: '/system/article/' + id,
- method: 'get'
- })
- }
-
- // 新增站点文章管理
- export function addArticle(data) {
- return request({
- url: '/system/article',
- method: 'post',
- data: data
- })
- }
-
- // 修改站点文章管理
- export function updateArticle(data) {
- return request({
- url: '/system/article',
- method: 'put',
- data: data
- })
- }
-
- // 删除站点文章管理
- export function delArticle(id) {
- return request({
- url: '/system/article/' + id,
- method: 'delete'
- })
- }
|