@dzhai
2016-01-12T13:09:54.000000Z
字数 2924
阅读 1156
评论
memberPath=127.0.0.1:8080/member
<div id="commentReplyDiv" params="userType|moduleType|moduleId" showType="1"> </div>
showType=1 前端访问
showType=2 后端管理
url: /image/validcode.htm
url: /image/getCode/jsonp.json
参数:callbackfun
返回:{code:’XXXX’}
url: /commentReply/list.json
参数:moduleId 视频/观点/调查 id
moduleType
userType
pagenum 页码 从1开始
pagesize 每页显示的数据量
callbackfun
返回:JsonObject
JsonObject数据结构
{
'list': [],
'totalCount': '',
'currentPage': '',
'pageSize': '',
'totalPage': ''
}
list中的数据
{
id: '',
moduleId: '',
moduleType:1/2/3/4/5/6,
userType: 0/1/2,
content: '',
createDate: '',
isReply: true/false,
user: {
},
reply: {
content: '',
createDate: '',
user: {
}
}
}
user对象数据
用户
{
userId:''
headImg: '',
showName: '',
userType: 1,
role: '',
level: ''
}
品牌
{
userId:''
headImg: '',
showName: '',
userType: 2
}
美试
{
userId:'' //美试ID
headImg: '',
showName: '',
userType: 0,
employeeCode:'' //员工编号
}
url: /commentReply/add.jsonp
参数:moduleType
moduleId
userType
content
callbackfun
返回:{code:200,user:{}}
code=200 成功
code=201 内容变更,请稍后操作
code=500 异常
url: /commentReply/reply.json
参数:id
content
callbackfun
返回:{code:200,user:{}}
code=200 成功
code=201 内容变更,请稍后操作
code=500 异常
url: /commentReply/del.json
参数:id
type=1
callbackfun
返回:{code:200}
code=200 成功
code=201 内容变更,请稍后操作
code=500 异常
url: /commentReply/del.json
参数:id
type=2
callbackfun
返回:{code:200}
code=200 成功
code=201 内容变更,请稍后操作
code=500 异常
<a datasource="commentCount" params="userType|moduleType|moduleId"></a>
url: /commentReply/count.jsonp
参数:moduleIds 视频/观点/调查 ids 数组
moduleType
userType
callbackfun
返回:JsonArray
[
{moduleId:'',count:1},
{}
]
数据字典
userType
0 美试
1 用户
2 品牌
moduleType
1 调查
2 观点
3 视频
4 评价报告
5 申请拉赞
6 产品详情
数据模型
id //主键
moduleType //模块名称
moduleId //详情页ID
userType //用户类型
content //评论内容
createDate //创建时间
userId //评论人Id
isDelete //是否删除 1 删除 0 未删除
isReply //是否恢复 1 回复 0 未回复
user:{ //评论人信息
...
}
replyUserId //回复人Id
reply:{ //回复信息
content //回复内容
createDate //回复时间
isDelete //是否删除
user:{ //回复人信息
...
}
}
用户数据
userId -- user_id //用户ID
showName -- nickname //用户昵称
headImg -- head_url //用户头像url
userType=1 //用户类型固定1
role //会员类型
level //会员等级
品牌数据
userId -- brandId //品牌ID
showName -- expName //品牌体验中心名称
headImg -- logo_url //品牌logo
userType -- 2 //用户类型固定2
brandName -- brandName //品牌名称
categoryName -- categoryName //品牌主营类目名称
美试数据
userId -- 美试ID //回复人美试ID
showName -- 美试网 //固定美试网
headImg -- 美试固定logo //美试固定logoUrl
userType -- 0 //用户类型固定0
employeeCode -- employeeCode //员工编号
1.举报用户
var opts={};
opts.reportTargetObject='0';
opts.targetUserId=''; //用户id
opts.contentId='';//评论ID
opts.reprotType='1';
opts.reportContentType='10'; //10评论 11回复
opts.contentPublishTime='';//时间格式 yyyy/MM/dd HH:mm:ss
opts.contentUrlPage=''+document.location.href+'';
opts.contentDetails='';//举报内容 评论 or 回复内容
reportDivPage(3,opts);
2.举报品牌
var opts={};
opts.reportTargetObject='1';
opts.targetUserId=''; //品牌id
opts.contentId='';//评论ID
opts.reprotType='1';
opts.reportContentType='10'; //10评论 11回复
opts.contentPublishTime='';//时间格式
opts.contentUrlPage=''+document.location.href+'';
opts.contentDetails='';//举报内容 评论 or 回复内容
opts.brandId='';//品牌ID
opts.brandName='';
opts.brandExpName='';//showName
opts.brandLogoUrl='';//headImage
opts.brandCategory='';
reportDivPage(3,opts);