chatroom.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <chat id="chat" :username="username" ref="chat" chatType="singleChat" @onClickInviteMsg="onClickMsg"></chat>
  3. </template>
  4. <script>
  5. let disp = require("@/utils/broadcast");
  6. import chat from "@/components/chat/chat.vue";
  7. export default {
  8. data() {
  9. return {
  10. username: {
  11. your: ""
  12. }
  13. };
  14. },
  15. components: {
  16. chat
  17. },
  18. props: {},
  19. // options = 系统传入的 url 参数
  20. onLoad(options) {
  21. // console.log(JSON.parse(options.username));
  22. let username = JSON.parse(options.username);
  23. /* this.setData({
  24. username: username
  25. }); */
  26. this.username = username
  27. // 生成的支付宝小程序在onLoad里获取不到,这里放到全局变量下
  28. uni.username = username;
  29. let title = ''
  30. uni.WebIM.conn.fetchUserInfoById(username.your, 'nickname').then((res) => {
  31. title = res.data[username.your].nickname
  32. uni.setNavigationBarTitle({
  33. title: title
  34. });
  35. })
  36. console.log(title);
  37. this.getList()
  38. this.getUser()
  39. },
  40. onUnload() {
  41. disp.fire("em.chatroom.leave");
  42. },
  43. onPullDownRefresh: function () {
  44. uni.showNavigationBarLoading();
  45. this.$refs.chat.getMore();
  46. // 停止下拉动作
  47. uni.hideNavigationBarLoading();
  48. uni.stopPullDownRefresh();
  49. },
  50. methods: {
  51. getList() {
  52. var that = this
  53. let options = {
  54. // 对方的用户 ID 或者群组 ID 或聊天室 ID。
  55. targetId: that.username.your,
  56. // 每页期望获取的消息条数。取值范围为 [1,50],默认值为 20。
  57. pageSize: 20,
  58. // 查询的起始消息 ID。若该参数设置为 `-1`、`null` 或空字符串,从最新消息开始。
  59. cursor: -1,
  60. // 会话类型:(默认) `singleChat`:单聊;`groupChat`:群聊。
  61. chatType: "singleChat",
  62. // 消息搜索方向:(默认)`up`:按服务器收到消息的时间的逆序获取;`down`:按服务器收到消息的时间的正序获取。
  63. searchDirection: "up",
  64. };
  65. uni.WebIM.conn
  66. .getHistoryMessages(options)
  67. .then((res) => {
  68. // console.log(res);
  69. })
  70. .catch((e) => {
  71. // 获取失败。
  72. });
  73. },
  74. getUser() {
  75. let myUsername = uni.getStorageSync('myUsername')
  76. let users = [this.username.your, myUsername]
  77. uni.WebIM.conn.fetchUserInfoById(users).then((res) => {
  78. // console.log('用户信息',res)
  79. })
  80. },
  81. onClickMsg(msg){
  82. msg.action = 'join'
  83. // uni.navigateTo({
  84. // url: "../emedia/index?srcData="+JSON.stringify(msg)
  85. // });
  86. }
  87. }
  88. };
  89. </script>
  90. <style>
  91. @import "./chatroom.css";
  92. </style>