chat.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <template>
  2. <view class="chat">
  3. <view class="chat-list">
  4. <view class="more-btn" @click="tomore">
  5. {{showmore ? '点击查看更多' : '没有更多了'}}
  6. </view>
  7. <view class="chat-item u-flex u-col-top u-row-between" v-for="(item,index) in list" :key="index">
  8. <image :src="item.headimg" :style="{opacity:item.type == 2 ? 1 : 0}" class="user-head" mode=""></image>
  9. <view class="item-box u-flex-1 u-flex-col" :style="{alignItems: item.type == 2 ? 'flex-start' : 'flex-end'}">
  10. <text>{{item.name}}</text>
  11. <text :class="item.type == 2 ? 'text1' : 'text2'">{{item.content}}</text>
  12. </view>
  13. <image :src="item.headimg" :style="{opacity:item.type == 2 ? 0 : 1}" class="user-head" mode=""></image>
  14. </view>
  15. <view class="chat-item u-flex u-col-top u-row-between" v-for="(item,index) in chatlist" :key="index">
  16. <image :src="item.headimg" :style="{opacity:item.type == 2 ? 1 : 0}" class="user-head" mode=""></image>
  17. <view class="item-box u-flex-1 u-flex-col" :style="{alignItems: item.type == 2 ? 'flex-start' : 'flex-end'}">
  18. <text>{{item.name}}</text>
  19. <text :class="item.type == 2 ? 'text1' : 'text2'">{{item.content}}</text>
  20. </view>
  21. <image :src="item.headimg" :style="{opacity:item.type == 2 ? 0 : 1}" class="user-head" mode=""></image>
  22. </view>
  23. </view>
  24. <view class="" style="height: 170rpx;"></view>
  25. <view class="chat-btn u-flex u-row-between">
  26. <input type="text" placeholder="请输入" v-model="text">
  27. <text @click="send(text)">发送</text>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. text: '',
  36. hx_username: '',
  37. worker_id:'',
  38. page: 1,
  39. list: [],
  40. chatlist:[],
  41. myname:'',
  42. myheadimg:'',
  43. workername:'',
  44. workerheadimg:'',
  45. }
  46. },
  47. onLoad(option) {
  48. this.hx_username = option.hx_username
  49. this.worker_id = option.worker_id
  50. this.myname = uni.getStorageSync("name")
  51. this.myheadimg = uni.getStorageSync("headimg")
  52. this.getlist()
  53. this.getworker()
  54. this.getmsg()
  55. },
  56. computed:{
  57. showmore(){
  58. if(this.list.length % 20 == 0 && this.list.length > 0){
  59. return true
  60. }else{
  61. return false
  62. }
  63. }
  64. },
  65. methods: {
  66. tomore(){
  67. if(this.showmore){
  68. this.page++
  69. this.getlist()
  70. }
  71. },
  72. getmsg(){
  73. this.$WebIM.conn.addEventHandler('getmsg', {
  74. // 当前用户收到文本消息。
  75. onTextMessage: (message) => {
  76. console.log(message);
  77. this.chatlist.push({
  78. content: message.msg,
  79. create_at: this.$u.timeFormat(message.time, 'yyyy-mm-dd hh:MM:ss'),
  80. headimg: message.from == uni.getStorageSync("hx_username") ? this.myheadimg : this.workerheadimg,
  81. name: message.from == uni.getStorageSync("hx_username") ? this.myname : this.workername,
  82. type: message.from == uni.getStorageSync("hx_username") ? 1 : 2,
  83. })
  84. this.$nextTick(() => {
  85. uni.pageScrollTo({
  86. scrollTop:99999
  87. })
  88. })
  89. },
  90. })
  91. },
  92. getworker(){
  93. this.$u.post('/api/News/get_worker_info',{
  94. worker_id: this.worker_id
  95. }).then(res => {
  96. this.workername = res.data.name
  97. this.workerheadimg = res.data.headimg
  98. })
  99. },
  100. getlist() {
  101. uni.showLoading({
  102. mask:true,
  103. title:"请稍后"
  104. })
  105. this.$u.post('/api/News/news_list', {
  106. worker_id: this.worker_id,
  107. page_num: 20,
  108. page: this.page
  109. }).then(res => {
  110. var list = res.data
  111. list.forEach(val => {
  112. this.list.unshift(val)
  113. })
  114. if(this.page == 1){
  115. this.$nextTick(() => {
  116. uni.pageScrollTo({
  117. scrollTop:99999
  118. })
  119. })
  120. }
  121. })
  122. },
  123. send(text) {
  124. if (!text) {
  125. this.$u.toast("请输入内容")
  126. return
  127. }
  128. this.text = ''
  129. let option = {
  130. // 消息类型。
  131. type: "txt",
  132. // 消息内容。
  133. msg: text,
  134. // 消息发送方:单聊为对方用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  135. from: uni.getStorageSync("hx_username"),
  136. // 消息接收方:单聊为对方用户 ID,群聊和聊天室分别为群组 ID 和聊天室 ID。
  137. to: this.hx_username,
  138. // 会话类型:单聊、群聊和聊天室分别为 `singleChat`、`groupChat` 和 `chatRoom`,默认为单聊。
  139. chatType: "singleChat",
  140. };
  141. // 创建文本消息。
  142. let msg = this.$WebIM.message.create(option);
  143. // console.log(msg);
  144. this.$WebIM.conn.send(msg).then(res => {
  145. this.$u.post('/api/News/send_news', {
  146. worker_id: this.worker_id,
  147. content: text
  148. }).then(res => {
  149. this.chatlist.push({
  150. content: msg.msg,
  151. create_at: this.$u.timeFormat(msg.time, 'yyyy-mm-dd hh:MM:ss'),
  152. headimg: this.myheadimg,
  153. name: this.myname,
  154. type: 1,
  155. })
  156. this.$nextTick(() => {
  157. uni.pageScrollTo({
  158. scrollTop:99999
  159. })
  160. })
  161. // console.log(this.chatlist);
  162. })
  163. })
  164. }
  165. }
  166. }
  167. </script>
  168. <style lang="scss">
  169. page {
  170. background-color: #F2F2F2;
  171. }
  172. .chat {
  173. .chat-list {
  174. padding: 24rpx;
  175. .more-btn{
  176. padding: 10rpx 0;
  177. text-align: center;
  178. }
  179. .chat-item {
  180. margin-bottom: 44rpx;
  181. .item-box {
  182. text:first-child {
  183. font-size: 28rpx;
  184. font-family: PingFangSC-Medium, PingFang SC;
  185. font-weight: 500;
  186. color: #666666;
  187. padding: 8rpx 24rpx;
  188. }
  189. text:last-child {
  190. padding: 20rpx;
  191. border-radius: 20rpx;
  192. }
  193. .text1 {
  194. background-color: #fff;
  195. }
  196. .text2 {
  197. background-color: #1F7EFF;
  198. color: #fff;
  199. }
  200. }
  201. .user-head {
  202. width: 80rpx;
  203. height: 80rpx;
  204. border-radius: 100rpx;
  205. }
  206. }
  207. }
  208. .chat-btn {
  209. position: fixed;
  210. bottom: 0;
  211. left: 0;
  212. width: 750rpx;
  213. height: 166rpx;
  214. background: #FFFFFF;
  215. z-index: 10;
  216. padding: 0 24rpx 60rpx 24rpx;
  217. input {
  218. width: 574rpx;
  219. height: 58rpx;
  220. background: #F2F2F2;
  221. border-radius: 30rpx;
  222. padding: 0 28rpx;
  223. box-sizing: border-box;
  224. }
  225. text {
  226. width: 102rpx;
  227. line-height: 58rpx;
  228. background: #1F7EFF;
  229. border-radius: 30rpx;
  230. text-align: center;
  231. font-size: 24rpx;
  232. font-family: PingFangSC-Regular, PingFang SC;
  233. font-weight: 400;
  234. color: #FFFFFF;
  235. }
  236. }
  237. }
  238. </style>