|
@@ -84,6 +84,8 @@ function messageShow(){
|
|
|
clickMessageType = false;
|
|
|
}
|
|
|
})
|
|
|
+ var height = $(".right_el_scrollbar")[0].scrollHeight;
|
|
|
+ $(".chat__room-content-scroll .el-scrollbar__wrap").scrollTop(height);
|
|
|
}
|
|
|
//注册并登录环信账号
|
|
|
function registerUser(){
|
|
@@ -184,6 +186,8 @@ function sendPrivateText(textVal) {
|
|
|
" <p style=\"display: none;\"></p><i class=\"arrow\"></i></div>\n" +
|
|
|
" </div>\n" +
|
|
|
" <span>"+ formatNotss(Date.parse(new Date())) +"</span></div><!----></div>")
|
|
|
+ var height = $(".right_el_scrollbar")[0].scrollHeight;
|
|
|
+ $(".chat__room-content-scroll .el-scrollbar__wrap").scrollTop(height + 200);
|
|
|
},
|
|
|
fail: function(e){
|
|
|
console.log("失败");
|
|
@@ -216,6 +220,8 @@ function clickMessage(obj){
|
|
|
} else {
|
|
|
messageLoad(item, headImg, time);
|
|
|
}
|
|
|
+ var height = $(".right_el_scrollbar")[0].scrollHeight;
|
|
|
+ $(".chat__room-content-scroll .el-scrollbar__wrap").scrollTop(height);
|
|
|
});
|
|
|
},
|
|
|
fail: function(){}
|