long
2023-03-03 9860e221460a0a4ac1903dad2c97160d0eed0e63
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<template>
  <div>
    <ul ref="chatList" class="chat-list" :style="`height:${height};`">
 
      <li v-for="(item, index) in list" :key="index">
        <!-- 时间 -->
        <div v-if="item.time_tx" class="flex"><div class="chat-time">{{ item.time_tx }}</div></div>
 
        <!-- 聊天主体 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ -->
        <!-- 通常主体 有用户信息 -->
        <div class="chat-item" :class="{'me-item': getDirection(item.fromUser)=='right'}">
          <img :src="item.avatar" alt="" class="avatar" fit="cover">
          <div class="info">
            <!-- ({{ item.msgtype }}) -->
            <div class="name">{{ item.name }}</div>
 
            <!-- 消息内容 ↓↓↓↓↓↓↓↓↓↓ -->
            <!-- 文本 -->
            <textPop v-if="item.msgtype === 'text'" :data="item.content" :direction="getDirection(item.fromUser)" />
            <!-- 图片 -->
            <imagePop v-if="item.msgtype === 'image'" :data="item" :direction="getDirection(item.fromUser)" />
            <!-- 消息内容 ↑↑↑↑↑↑↑↑↑↑ -->
          </div>
        </div>
        <!-- 聊天主体 ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ -->
      </li>
 
      <div v-if="loading" class="text-center">
        <div class="ball-rotate"><div /></div>
      </div>
    </ul>
 
    <div class="handle-wrap flex flex-ver">
      <input v-model="myTalk" type="text" class="input flex-1" maxlength="100" @keyup.enter="handleSend">
      <div class="send-btn" @click="handleSend">发送</div>
    </div>
 
    <!-- audioFileUrl -->
    <audio ref="refAudio" src="">
      您的浏览器不支持 audio 标签。
    </audio>
  </div>
</template>
 
<script>
// const listMockData = require('./chat_list_mockData')
const chatFn = require('@/utils/chat/chat.js')
import imagePop from './msg/imagePop.vue'
import textPop from './msg/textPop.vue'
import config from '../../config/index'
export default {
  name: 'ChatList',
  components: { textPop, imagePop },
  mixins: [],
  props: {
    // 高度
    height: {
      type: String,
      default: '100vh'
    }
  },
  data() {
    return {
      userId: '',
      myTalk: '',
 
      // 列表数据
      loading: false,
      list: []
    }
  },
  mounted() {
    this.init()
  },
  methods: {
    init() {
      this.userId = this.getQueryString('userId')
      console.log('this.userId', this.userId)
      if (!this.userId) window.appToast('缺少userID,请重新进入')
    },
 
    // 判断位置 return 'left' 'right'
    getDirection(itemUserId) {
      return itemUserId === 'mySelf' ? 'right' : 'left'
    },
 
    // 点击发送
    handleSend() {
      if (this.loading) return window.appToast('操作过快,请稍后')
      if (!this.userId) return window.appToast('缺少userID,请重新进入')
 
      const myTalk = JSON.parse(JSON.stringify(this.myTalk))
      const list = JSON.parse(JSON.stringify(this.list))
 
      if (!myTalk) return window.appToast('请输入内容')
      this.myTalk = ''
 
      list.push({
        content: { 'content': myTalk },
        name: '我',
        msgtime: this.$moment().format('yyyy-MM-DD HH:mm:ss'),
        action: 'send',
        id: this.$moment().format('yyyyMMDDHHmmss'),
        avatar: require('@/assets/imgs/mySelf.png'),
        msgtype: 'text',
        fromUser: 'mySelf'
      })
 
      // 处理聊天显示的日期
      list && list.forEach((item, index) => {
        if (index !== 0) item.time_tx = chatFn.chatTime(item.msgtime, list[index - 1] && list[index - 1].msgtime)
      })
      this.list = list
 
      this.$nextTick(() => { this.scrollBottom() })
 
      this.getData(myTalk)
    },
 
    // 获取ai返回内容
    getData(keyWord) {
      console.log('getChatList')
      var { loading, userId } = this
      const list = JSON.parse(JSON.stringify(this.list))
      if (loading) return
 
      this.loading = true
 
      const url = config.is_use_test_server ? 'crm-user/chatGpt/chat' : 'chat/msg'
 
      this.Req.http.post({
        url: url,
        data: {
          msg: keyWord,
          userId: userId
        },
        udData: { noLoading: true, nokey: true },
        mockData: {
          code: 100,
          msg: '',
          data: {
            text: '机器人回复'
          }
        }
      }).then(res => {
        this.loading = false
 
        if (res.data) {
          const content = res.data.replace(/\n/g, '</br>')
          list.push({
            content: { 'content': content },
            name: 'AI',
            msgtime: this.$moment().format('yyyy-MM-DD HH:mm:ss'),
            action: 'send',
            id: this.$moment().format('yyyyMMDDHHmmss'),
            avatar: require('@/assets/imgs/AI.png'),
            msgtype: 'text',
            fromUser: 'robot'
          })
        }
 
        // 处理聊天显示的日期
        list && list.forEach((item, index) => {
          if (index !== 0) item.time_tx = chatFn.chatTime(item.msgtime, list[index - 1] && list[index - 1].msgtime)
        })
 
        this.list = list
 
        this.$nextTick(() => { this.scrollBottom() })
      }).catch(res => {
        this.loading = false
        const warnText = res.msg || ('请稍后再试...')
        window.appToast(warnText)
      })
    },
 
    scrollBottom() {
      this.$nextTick(() => {
        this.$refs.chatList.scrollTop = this.$refs.chatList.scrollHeight
      })
    }
  }
}
</script>
 
<style scoped>
.loading-tx{
  font-size: 22px;
  color: #999;
}
 
.chat-list{
  overflow-y: auto;
  background-color: #fff;
  padding-top: 40px;
  box-sizing: border-box;
  padding-bottom: 140px;
}
 
.chat-time{
  background-color: #DADADA;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  padding: 4px 0;
  border-radius: 6px;
  text-align: center;
  margin: 6px auto 10px;
  padding: 4px 10px;
}
 
.chat-item{
  margin-bottom: 20px;
  padding: 0 20px ;
}
.chat-item .avatar{
  height: 60px;
  width: 60px;
  display: block;
  margin-right: 10px;
  border-radius: 4px;
  float: left;
}
.chat-item .info{
  /* padding-top: 4px; */
  display: inline-block;
  text-align: left;
}
.chat-item .info .name{
  line-height: 1.2;
  height: 1.2em;
  margin-bottom: 4px;
  font-size: 22px;
}
.chat-item.me-item{
  text-align: right;
}
.chat-item.me-item .avatar{
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
.chat-item.me-item .name{
  text-align: right;
}
 
.handle-wrap{
  background-color: #F7F7F7;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px 60px 30px;
  box-sizing: border-box;
}
.handle-wrap .input{
  height: 60px;
  line-height: 30px;
  font-size: 26px;
  border: none;
  background-color: #fff;
  border-radius: 6px;
  outline: none;
}
.handle-wrap .input:focus{
  border: none;
}
.handle-wrap .send-btn{
  background-color: #45B1D7;
  height: 60px;
  line-height: 60px;
  color: #fff;
  padding: 0 20px;
  border-radius: 6px;
  letter-spacing: 4px;
  margin-left: 20px;
  font-size: 28px;
}
 
@keyframes ball-rotate {
  0% {transform: rotate(0deg) scale(1); }
 
  50% {transform: rotate(180deg) scale(0.6);}
 
  100% {transform: rotate(360deg) scale(1);}
}
.ball-rotate{position: relative;width: 100px;height: 70px;margin: 0 auto 20px;}
.ball-rotate > div {
    background-color: #000;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin: 4px;
    animation-fill-mode: both;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -16px 0 0 -16px;
}
.ball-rotate > div:first-child {
    animation: ball-rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
}
.ball-rotate > div:before, .ball-rotate > div:after {
    background-color: #000;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin: 4px;
    content: ""!important;
    position: absolute;
    opacity: .8;
}
.ball-rotate > div:before {top: 0px;left: -56px}
.ball-rotate > div:after {top: 0px;left: 50px}
</style>