+
@@ -15,6 +15,13 @@
},
onLoad() {
this.informationList();
+ var _that = this
+ uni.getSystemInfo({
+ success: function (res) {
+ console.log(res.windowHeight);
+ _that.height = res.windowHeight
+ }
+ });
},
methods: {
titletext() {},
@@ -36,7 +43,9 @@
page {
background-color: #ECECEC;
}
-
+ #viewes{
+ background: #ECECEC;
+ }
.sousuo {
height: 113rpx;
border: 1px #f00 solid;
diff --git a/pageD/privateChat/privateChat.vue b/pageD/privateChat/privateChat.vue
index c638b31..a34f460 100644
--- a/pageD/privateChat/privateChat.vue
+++ b/pageD/privateChat/privateChat.vue
@@ -59,7 +59,7 @@
{{audio.recording ? '松开发送' : '按住录音'}}
-
+
@@ -84,6 +84,7 @@
return {
//聊天文本框
content: '',
+ bottom : '',
friend: null,
currentUser: null,
//已经接收到的消息
@@ -154,6 +155,11 @@
this.imService.resetFriendUnReadMessage(this.friend);
},
methods: {
+ bindtapInput(){
+ console.log("222")
+ var _that = this;
+ _that.bottom = 14
+ },
initialListeners () {
//传入监听器,收到一条私聊消息总是滚到到页面底部
this.imService.onNewPrivateMessageReceive = (friendId, message)=> {
diff --git a/pageE/setting/version.vue b/pageE/setting/version.vue
index 9fc76db..ca9f2a1 100644
--- a/pageE/setting/version.vue
+++ b/pageE/setting/version.vue
@@ -12,8 +12,8 @@