示例#1
0
 private void GetCommentInfo(CommentsRes res)
 {
     _friendModel = GetData <FriendModel>();
     _friendModel.InitCommentList(res);
     //GetApplyRes();
     MakeFriendsView.SetData(_friendModel);
 }
示例#2
0
 private void RefreshCommentCallBack(CommentsRes res)
 {
     LoadingOverlay.Instance.Hide();
     FlowText.ShowMessage(I18NManager.Get("Shop_RefreshTips"));
     _friendModel.RefreshTime = res.RefreshTime;
     _friendModel.UpdateCommentList(res.FriendBases);
     MakeFriendsView.SetData(_friendModel);
 }
示例#3
0
 public void InitCommentList(CommentsRes res)
 {
     FriendCommentList = res.FriendBases;
     RefreshTime       = res.RefreshTime;
 }