1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import request from '@/utils/request'
- export function fetchList(query) {
- return request({
- url: '/article/list',
- method: 'post',
- params: query
- })
- }
- export function fetchArticle(id) {
- return request({
- url: '/article/detail',
- method: 'get',
- params: { id }
- })
- }
- export function fetchPv(pv) {
- return request({
- url: '/article/pv',
- method: 'get',
- params: { pv }
- })
- }
- export function createArticle(data) {
- return request({
- url: '/article/create',
- method: 'post',
- data
- })
- }
- export function updateArticle(data) {
- return request({
- url: '/article/update',
- method: 'post',
- data
- })
- }
|