131 lines
3.6 KiB
JavaScript
Executable File
131 lines
3.6 KiB
JavaScript
Executable File
import { post, get, upload } from '@/utils/request'
|
|
import { getToken } from '@/utils/auth'
|
|
import config from '@/config/config'
|
|
|
|
// 查询用户文集分类服务接口
|
|
export const ServeGetArticleClass = data => {
|
|
return get('/api/v1/article/article-class', data)
|
|
}
|
|
|
|
// 获取笔记表标签服务接口
|
|
export const ServeGetArticleTag = data => {
|
|
return get('/api/v1/article/article-tags', data)
|
|
}
|
|
|
|
// 查询用户文集分类服务接口
|
|
export const ServeGetArticleList = data => {
|
|
return get('/api/v1/article/article-list', data)
|
|
}
|
|
|
|
// 查询用户文集分类服务接口
|
|
export const ServeGetArticleDetail = data => {
|
|
return get('/api/v1/article/article-detail', data)
|
|
}
|
|
|
|
// 添加或编辑文集分类服务接口
|
|
export const ServeEditArticleClass = data => {
|
|
return post('/api/v1/article/edit-article-class', data)
|
|
}
|
|
|
|
// 添加或编辑笔记标签服务接口
|
|
export const ServeEditArticleTag = data => {
|
|
return post('/api/v1/article/edit-article-tag', data)
|
|
}
|
|
|
|
// 删除笔记分类服务接口
|
|
export const ServeDeleteArticleClass = data => {
|
|
return post('/api/v1/article/del-article-class', data)
|
|
}
|
|
|
|
// 删除笔记标签服务接口
|
|
export const ServeDeleteArticleTag = data => {
|
|
return post('/api/v1/article/del-article-tag', data)
|
|
}
|
|
|
|
// 笔记分类排序服务接口
|
|
export const ServeArticleClassSort = data => {
|
|
return post('/api/v1/article/article-class-sort', data)
|
|
}
|
|
|
|
// 合并笔记分类服务接口
|
|
export const ServeMergeArticleClass = data => {
|
|
return post('/api/v1/article/merge-article-class', data)
|
|
}
|
|
|
|
// 移动笔记服务接口
|
|
export const ServeMoveArticle = data => {
|
|
return post('/api/v1/article/move-article', data)
|
|
}
|
|
|
|
// 设置标记星号笔记服务接口
|
|
export const ServeSetAsteriskArticle = data => {
|
|
return post('/api/v1/article/set-asterisk-article', data)
|
|
}
|
|
|
|
// 编辑笔记服务接口
|
|
export const ServeEditArticle = data => {
|
|
return post('/api/v1/article/edit-article', data)
|
|
}
|
|
|
|
// 删除笔记服务接口
|
|
export const ServeDeleteArticle = data => {
|
|
return post('/api/v1/article/delete-article', data)
|
|
}
|
|
|
|
// 恢复笔记服务接口
|
|
export const ServeRecoverArticle = data => {
|
|
return post('/api/v1/article/recover-article', data)
|
|
}
|
|
|
|
// 笔记图片上传服务接口
|
|
export const ServeUploadArticleImg = data => {
|
|
return upload('/api/v1/article/upload-article-image', data)
|
|
}
|
|
|
|
// 笔记附件上传服务接口
|
|
export const ServeUploadArticleAnnex = data => {
|
|
return upload('/api/v1/article/upload-article-annex', data)
|
|
}
|
|
|
|
// 移除笔记附件服务接口
|
|
export const ServeDeleteArticleAnnex = data => {
|
|
return post('/api/v1/article/delete-article-annex', data)
|
|
}
|
|
|
|
// 恢复笔记附件服务接口
|
|
export const ServeRecoverArticleAnnex = data => {
|
|
return post('/api/v1/article/recover-article-annex', data)
|
|
}
|
|
|
|
// 永久删除笔记附件回收站文件
|
|
export const ServeForeverDeleteAnnex = data => {
|
|
return post('/api/v1/article/forever-delete-annex', data)
|
|
}
|
|
|
|
// 永久删除笔记回收站的笔记
|
|
export const ServeForeverDeleteArticle = data => {
|
|
return post('/api/v1/article/forever-delete-article', data)
|
|
}
|
|
|
|
// 笔记附件回收站列表服务接口
|
|
export const ServeGetRecoverAnnexList = () => {
|
|
return get('/api/v1/article/recover-annex-list')
|
|
}
|
|
|
|
// 下载笔记附件服务接口
|
|
export const ServeDownloadAnnex = annex_id => {
|
|
let api = config.BASE_API_URL
|
|
try {
|
|
let link = document.createElement('a')
|
|
link.href = `${api}/api/v1/download/article-annex?annex_id=${annex_id}&token=${getToken()}`
|
|
link.click()
|
|
} catch (e) {
|
|
console.error(e)
|
|
}
|
|
}
|
|
|
|
// 更新笔记标签服务接口
|
|
export const ServeUpdateArticleTag = data => {
|
|
return post('/api/v1/article/update-article-tag', data)
|
|
}
|