chatDetail.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <view v-if="left"></view>
  6. <view v-if="right"></view>
  7. </block>
  8. </view>
  9. <view class="bottom">
  10. <u-input v-model="message" border="none" placeholder="和他聊一下吧~" @confirm="sendText"></u-input>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. import $api from '@/static/js/api.js'
  16. var that = ''
  17. export default {
  18. data() {
  19. return {
  20. userInfo: {
  21. },
  22. other: {
  23. id: '',
  24. name: ''
  25. },
  26. message: '',
  27. pageList: []
  28. }
  29. },
  30. onLoad(options) {
  31. that = this
  32. if(options.id) {
  33. that.other.id = options.id,
  34. that.other.name = options.name
  35. }
  36. that.getUserInfo()
  37. },
  38. onReady() {
  39. uni.setNavigationBarTitle({
  40. title: that.other.name
  41. })
  42. },
  43. methods: {
  44. getUserInfo() {
  45. },
  46. sendText() {
  47. let option = {
  48. // 设置消息类型。
  49. type: "txt",
  50. // 设置消息内容。
  51. msg: that.message,
  52. // 设置消息接收方,单聊为对方用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  53. to: that.other.id,
  54. // 设置会话类型,单聊、群聊和聊天室分别为 `singleChat`、`groupChat` 和 `chatRoom`,默认为单聊。
  55. chatType: "singleChat",
  56. };
  57. let msg = uni.WebIM.message.create(option);
  58. uni.WebIM.conn.send(msg).then((res) => {
  59. console.log("Send message success",res);
  60. }).catch((error) => {
  61. console.log("Send message fail",error);
  62. });
  63. }
  64. },
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .content::v-deep {
  69. background: #F4F4F4;
  70. .bottom {
  71. width: 100%;
  72. height: 166rpx;
  73. position: fixed;
  74. bottom: 0;
  75. z-index: 99;
  76. background: #FFFFFF;
  77. .u-input {
  78. width: 612rpx;
  79. height: 80rpx;
  80. background: #F4F4F4;
  81. border-radius: 42rpx;
  82. margin: 12rpx 22rpx 0 30rpx;
  83. box-sizing: border-box;
  84. padding: 22rpx 32rpx !important;
  85. }
  86. }
  87. }
  88. </style>