|
@@ -42,7 +42,8 @@ const questionInfo = computed(() => {
|
|
|
return {
|
|
return {
|
|
|
content: props.dialog.question,
|
|
content: props.dialog.question,
|
|
|
client_custom_icon: props.dialog.client_custom_icon,
|
|
client_custom_icon: props.dialog.client_custom_icon,
|
|
|
- client_custom_upload_file_list: props.dialog.client_custom_upload_file_list
|
|
|
|
|
|
|
+ client_custom_upload_file_list: props.dialog.client_custom_upload_file_list,
|
|
|
|
|
+ client_custom_unique_id: props.dialog.client_custom_unique_id
|
|
|
};
|
|
};
|
|
|
});
|
|
});
|
|
|
|
|
|
|
@@ -52,7 +53,9 @@ const questionInfo = computed(() => {
|
|
|
const answerInfo = computed(() => {
|
|
const answerInfo = computed(() => {
|
|
|
const chat_info = props.dialog;
|
|
const chat_info = props.dialog;
|
|
|
|
|
|
|
|
- const obj = {};
|
|
|
|
|
|
|
+ const obj = {
|
|
|
|
|
+ client_custom_unique_id: chat_info.client_custom_unique_id
|
|
|
|
|
+ };
|
|
|
|
|
|
|
|
// 智能体回答的内容
|
|
// 智能体回答的内容
|
|
|
if (chat_info.answer) {
|
|
if (chat_info.answer) {
|