Browse Source

ai对话添加cid

11wqe1 10 months ago
parent
commit
84afc4099f

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

@@ -118,6 +118,7 @@ export default {
 			loading: false,
 			chatLoading:false,
 			userId:this.$route.query['userid'],
+			cid: this.$route.query.cid,
 			chatList: [],
 			textValue: "",
 		};
@@ -269,7 +270,7 @@ export default {
 				alltext: _data.aiContent,
 				type: "chat",
 				filename: _data.filename,
-				session_name: `${this.userId}-pblCourse`,
+				session_name: `${this.userId}-${this.cid}-pblCourse`,
 			};
 			this.ajax
 				.post("https://gpt4.cocorobo.cn/insert_chat", params)
@@ -287,7 +288,7 @@ export default {
 					userid: this.userId,
 					groupid: "602def61-005d-11ee-91d8-005056b8q12w",
 					// session_name:``
-					session_name: `${this.userId}-pblCourse`,
+					session_name: `${this.userId}-${this.cid}-pblCourse`,
 				};
 				this.ajax
 					.post("https://gpt4.cocorobo.cn/get_agent_park_chat", params)

+ 1 - 1
src/components/pages/pblCourse/guide.vue

@@ -296,7 +296,7 @@ export default {
       if (this.proType == "") {
         this.$message({
           type: "error",
-          message: "请选择项目选题"
+          message: "请输入项目选题"
         });
         return;
       }