木邻有你前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
462 B

import request from "@/api/request";
export default {
// 社区- 获取帖子列表
async queryPostList(data) {
return request({
url: '/comment/queryPostList',
method: 'GET',
data,
showLoading: true,
noToken: true
})
},
// 社区- 上传帖子
async addPost(data) {
return request({
url: '/comment/addPost',
method: 'POST',
data,
showLoading: true,
// noToken: true
})
}
}