init
This commit is contained in:
15
api/userArticleApi.js
Normal file
15
api/userArticleApi.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import moduleRequest from "../utils/http"
|
||||
|
||||
const http = moduleRequest('/client/c/userArticle/')
|
||||
|
||||
export default {
|
||||
userArticleTotal: () => http.get('userArticleTotal'),
|
||||
|
||||
addUserArticleCollection: (data) => http.post('addUserArticleCollection',data),
|
||||
|
||||
addUserArticleDownload: (data) => http.post('addUserArticleDownload',data),
|
||||
|
||||
getUserCollectionArticleList: () => http.get('getUserCollectionArticleList'),
|
||||
|
||||
getUserDownloadArticleList: () => http.get('getUserDownloadArticleList'),
|
||||
}
|
||||
Reference in New Issue
Block a user