|
|
|
@ -68,10 +68,12 @@ $(document).ready(function(){
|
|
|
|
|
replyNum++;
|
|
|
|
|
$(".reply-num").text("(" + replyNum + ")");
|
|
|
|
|
|
|
|
|
|
getOpenId(function(openid) {
|
|
|
|
|
//获取并传送回复用户数据
|
|
|
|
|
var userInfo = {
|
|
|
|
|
"type" : "HomeworkCommon",
|
|
|
|
|
"content" : postInput
|
|
|
|
|
"type": "HomeworkCommon",
|
|
|
|
|
"content": postInput,
|
|
|
|
|
openid: openid
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
@ -85,6 +87,7 @@ $(document).ready(function(){
|
|
|
|
|
error: function (err) { //如果执行不成功,那么执行此方法
|
|
|
|
|
alert("err:" + err);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|