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.
13 lines
378 B
13 lines
378 B
var fly = require('../utils/request.js')
|
|
module.exports = {
|
|
getCommentList: getCommentList,
|
|
getCommentReplyList:getCommentReplyList
|
|
}
|
|
//事件评论列表
|
|
function getCommentList(param) {
|
|
return fly.get('work/event/event/commentList', param)
|
|
}
|
|
//事件评论回复列表
|
|
function getCommentReplyList(param) {
|
|
return fly.get('work/event/event/commentReplyList', param)
|
|
}
|
|
|