更改样式
This commit is contained in:
parent
64ac0905da
commit
eab9fbcb91
@ -134,7 +134,7 @@
|
||||
height: 100rpx;
|
||||
background-color: rgb(255, 255, 255);
|
||||
display: flex;
|
||||
padding:0 20rpx;
|
||||
padding:0 10rpx;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.08);
|
||||
@ -162,7 +162,7 @@
|
||||
.time_desc .item{
|
||||
color:#E34D59;
|
||||
|
||||
display:inline-flex;
|
||||
display:flex;
|
||||
white-space: nowrap;
|
||||
align-items: center;
|
||||
font-size: 32rpx;
|
||||
|
||||
15
app.js
15
app.js
@ -131,7 +131,7 @@ App({
|
||||
|
||||
});
|
||||
|
||||
wx.$TUIKit.off(wx.$TUIKitTIM.EVENT.SDK_READY, this.onSDKReady);
|
||||
//wx.$TUIKit.off(wx.$TUIKitTIM.EVENT.SDK_READY, this.onSDKReady);
|
||||
wx.$TUIKit.setLogLevel(3);//设置日志级别
|
||||
wx.$TUIKit.on(wx.$TUIKitTIM.EVENT.SDK_READY, this.onSDKReady, this);
|
||||
wx.$TUIKit.on(wx.$TUIKitTIM.EVENT.TOTAL_UNREAD_MESSAGE_COUNT_UPDATED, this.onTotalUnreadMessageCountUpdated);
|
||||
@ -165,7 +165,7 @@ App({
|
||||
// console.log("未读消息数量:", totalUnreadCount)
|
||||
},
|
||||
onSDKReady(){
|
||||
// console.log("onSDKReady from app.js");
|
||||
console.log("onSDKReady from app.js");
|
||||
this.globalData.chat_sdk_ready = true;
|
||||
|
||||
// let promise = wx.$TUIKit.deleteConversation('C2C500318318078251008');
|
||||
@ -196,11 +196,16 @@ App({
|
||||
if(!index_info) wx.setStorageSync(userID+'_index_info',"");
|
||||
if(!my_info) wx.setStorageSync(userID+'_my_info', "");
|
||||
this.formatWenZhenInfo();
|
||||
|
||||
wx.$TUIKit.off(wx.$TUIKitTIM.EVENT.MESSAGE_RECEIVED, this.$onSystemPushReceived);
|
||||
wx.$TUIKit.on(wx.$TUIKitTIM.EVENT.MESSAGE_RECEIVED, this.$onSystemPushReceived, this);
|
||||
//互踢
|
||||
wx.$TUIKit.on(wx.$TUIKitTIM.EVENT.KICKED_OUT, this.onKickedOut);
|
||||
console.log("互踢");
|
||||
wx.$TUIKit.on(wx.$TUIKitTIM.EVENT.KICKED_OUT, this.onKickedOut,this);
|
||||
},
|
||||
onUnload(){
|
||||
wx.$TUIKit.off(wx.$TUIKitTIM.EVENT.SDK_READY, this.onSDKReady);
|
||||
wx.$TUIKit.off(wx.$TUIKitTIM.EVENT.MESSAGE_RECEIVED, this.$onSystemPushReceived);
|
||||
wx.$TUIKit.off(wx.$TUIKitTIM.EVENT.TOTAL_UNREAD_MESSAGE_COUNT_UPDATED, this.onTotalUnreadMessageCountUpdated);
|
||||
wx.$TUIKit.off(wx.$TUIKitTIM.EVENT.KICKED_OUT,this.$onKickedOut);
|
||||
},
|
||||
onKickedOut(){
|
||||
// console.log("onKickedOutonKickedOutonKickedOutonKickedOut");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user