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.
14 lines
378 B
14 lines
378 B
5 years ago
|
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)
|
||
|
}
|