SanHQin hai 6 meses
pai
achega
049b7c7050

A diferenza do arquivo foi suprimida porque é demasiado grande
+ 442 - 194
src/components/pages/classroomObservation/components/chatArea.vue


+ 18 - 2
src/components/pages/pblCourse/component/chatArea.vue

@@ -121,6 +121,7 @@ export default {
 			cid: this.$route.query.cid,
 			chatList: [],
 			textValue: "",
+			userName:"",
 		};
 	},
 	methods: {
@@ -257,12 +258,12 @@ export default {
 		},
 		// 保存对话
 		//保存消息
-		insertChat(_uid) {
+		async insertChat(_uid) {
 			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: "602def61-005d-11ee-91d8-005056b8q12w",
 				answer: _data.aiContent,
 				problem: _data.content,
@@ -278,6 +279,21 @@ export default {
 					console.log("保存对话")
 				});
 		},
+		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() {
 			return new Promise((resolve, reject) => {

+ 17 - 2
src/components/pages/pocAi/index.vue

@@ -427,13 +427,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,
@@ -446,6 +446,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() {

+ 19 - 3
src/components/pages/pocAiClassroom/chatArea.vue

@@ -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() {

Algúns arquivos non se mostraron porque demasiados arquivos cambiaron neste cambio