|
@@ -529,7 +529,8 @@ export default {
|
|
|
Image: /^https?:\/\/(.+\/)+.+(\.(gif|png|jpg|jpeg|webp|svg|psd|bmp|tif))$/i,
|
|
|
File: /^https?:\/\/(.+\/)+.+(\.(docx|doc|xlsx|ppt|pdf|pptx|txt))$/i,
|
|
|
video: /^https?:\/\/(.+\/)+.+(\.(avi|wmv|mpg|mpeg|mov|rm|ram|mp4|swf|flv))$/i
|
|
|
- }
|
|
|
+ },
|
|
|
+ userName:"",
|
|
|
};
|
|
|
},
|
|
|
directives: {
|
|
@@ -701,13 +702,13 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
//保存消息
|
|
|
- insertChat(_uid) {
|
|
|
+ async insertChat(_uid) {
|
|
|
if (_uid == "") return;
|
|
|
let _data = this.chatList.find(i => i.uid == _uid);
|
|
|
if (!_data) return;
|
|
|
let params = {
|
|
|
userId: this.userId,
|
|
|
- userName: "qgt",
|
|
|
+ userName: this.userName?this.userName:await this.getUser(this.userId),
|
|
|
groupId: "qwertyuiop-poc",
|
|
|
answer: _data.aiContent,
|
|
|
problem: _data.content,
|
|
@@ -720,6 +721,21 @@ export default {
|
|
|
this.ajax
|
|
|
.post("https://gpt4.cocorobo.cn/insert_chat", params)
|
|
|
.then(res => {});
|
|
|
+ },
|
|
|
+ getUser(uid) {
|
|
|
+ return new Promise(resolve => {
|
|
|
+ let params = { uid: uid };
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "getUser", params)
|
|
|
+ .then(res => {
|
|
|
+ let data = res.data[0][0];
|
|
|
+ this.userName = data.username;
|
|
|
+ resolve(data.username)
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
// 获取对应的聊天记录
|
|
|
getChatList() {
|