chatroom.vue 2.5 KB

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