ChatHistoryPanel.vue
34.5 KB
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
<template>
<div class="chat-history-panel">
<!-- 面板头部 -->
<div class="panel-header">
<h3 class="panel-title">{{ t("chatHistoryPanel.title") }}</h3>
<div class="panel-close" @click="$emit('close')">
<i class="fas fa-times"></i>
</div>
</div>
<!-- 选项卡 -->
<div class="panel-tabs">
<div class="tabs-left">
<div
class="tab-item"
:class="{ active: currentTab === 'all' }"
@click="switchTab('all')"
>
{{ t("chatHistoryPanel.tabs.all") }}
</div>
<div
class="tab-item"
:class="{ active: currentTab === 'quick' }"
@click="switchTab('quick')"
>
{{ t("chatHistoryPanel.tabs.quick") }}
</div>
<div
class="tab-item"
:class="{ active: currentTab === 'deep' }"
@click="switchTab('deep')"
>
{{ t("chatHistoryPanel.tabs.deep") }}
</div>
</div>
<div class="tabs-right">
<div class="search-container">
<i class="fas fa-search search-icon"></i>
<input
v-model="searchKeyword"
type="text"
class="search-input"
:placeholder="t('chatHistoryPanel.searchPlaceholder')"
@input="handleSearch"
/>
<i
v-if="searchKeyword"
class="fas fa-times clear-icon"
@click="clearSearch"
></i>
</div>
</div>
</div>
<!-- 对话列表 -->
<div class="panel-content">
<div v-if="loading" class="loading-state">
<i class="fas fa-spinner fa-spin"></i>
<span>{{ t("chatHistoryPanel.loading") }}</span>
</div>
<div v-else-if="filteredChats.length === 0" class="empty-state">
<i class="fas fa-comments"></i>
<span>{{ t("chatHistoryPanel.empty") }}</span>
</div>
<div v-else class="chat-list">
<div
v-for="group in groupedChats"
:key="group.period"
class="chat-group"
>
<div class="group-header">{{ group.period }}</div>
<div class="group-chats">
<div
v-for="chat in group.chats"
:key="chat.id"
class="chat-item"
@click="handleChatClick(chat)"
>
<!-- 深度检索任务统一使用 jiansuo.svg 图标 -->
<div v-if="chat.type === 'deep'" class="chat-icon">
<img src="/jiansuo.svg" class="status-icon" alt="deep search" />
</div>
<!-- 其他任务显示类型图标 -->
<div v-else class="chat-icon">
<i class="fas fa-comment-dots"></i>
</div>
<div class="chat-content">
<div class="chat-title">
{{
chat.type === "deep" && chat.question
? chat.question
: chat.title
}}
</div>
<div class="chat-meta">
<span class="chat-type-tag" :class="getChatTypeClass(chat)">
{{ getChatTypeLabel(chat) }}
</span>
<span class="chat-date">{{
formatRelativeDate(chat.createdAt)
}}</span>
</div>
</div>
<div class="chat-actions">
<img
src="/shanchu1.svg"
class="delete-icon"
@click.stop="handleDelete(chat.id)"
:title="t('chatHistoryPanel.deleteTooltip')"
alt="delete"
/>
</div>
</div>
</div>
</div>
</div>
<!-- 全部 tab 分页选择器(不显示 total) -->
<div
v-if="currentTab === 'all' && !loading && filteredChats.length > 0"
class="pagination-container"
>
<el-pagination
v-model:current-page="allCurrentPage"
v-model:page-size="allPageSize"
:page-sizes="[50, 100, 150, 200, 250, 300, 350]"
:size="'small'"
:background="true"
layout="sizes, prev, pager, next, jumper"
:total="
allHasMore
? allCurrentPage * allPageSize + 1
: allCurrentPage * allPageSize
"
@size-change="handleAllSizeChange"
@current-change="handleAllCurrentChange"
/>
</div>
<!-- 快问快答分页选择器(不显示 total) -->
<div
v-if="currentTab === 'quick' && !loading && filteredChats.length > 0"
class="pagination-container"
>
<el-pagination
v-model:current-page="quickCurrentPage"
v-model:page-size="quickPageSize"
:page-sizes="[50, 100, 150, 200, 250, 300, 350]"
:size="'small'"
:background="true"
layout="sizes, prev, pager, next, jumper"
:total="
quickHasMore
? quickCurrentPage * quickPageSize + 1
: quickCurrentPage * quickPageSize
"
@size-change="handleQuickSizeChange"
@current-change="handleQuickCurrentChange"
/>
</div>
<!-- 深度检索分页选择器 -->
<div
v-if="currentTab === 'deep' && !loading && filteredChats.length > 0"
class="pagination-container"
>
<el-pagination
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:page-sizes="[50, 100, 150, 200, 250, 300, 350]"
:size="'small'"
:background="true"
layout="sizes, prev, pager, next, jumper"
:total="totalCount"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, computed, onMounted } from "vue";
import { ElMessage, ElPagination } from "element-plus";
import { useI18n } from "vue-i18n";
import { listChats, deleteChat } from "@/api/chat";
import { getScheduleList, deleteSchedule } from "@/api/schedules";
const { t } = useI18n();
// 历史对话接口
interface ChatSession {
id: number;
title: string;
createdAt: string;
deleted: boolean;
type?: "quick" | "deep"; // 对话类型,quick: 快问快答,deep: 深度检索
provider?: string; // 提供商:doubao/baichuan/deerflow
question?: string; // 深度检索的问题
data?: any; // 深度检索的数据
statusIcon?: string | null; // 任务状态图标路径
isFinished?: boolean | null; // 任务完成状态
hasData?: boolean; // 深度检索任务是否有数据
threadId?: string; // 深度检索任务的线程ID
}
// 定义事件
const emit = defineEmits<{
close: [];
chatSelect: [chat: ChatSession];
deleted: [chatId: number];
}>();
// 数据
const currentTab = ref<"all" | "quick" | "deep">("all");
const chatList = ref<ChatSession[]>([]);
const loading = ref(false);
const searchKeyword = ref("");
// 分页相关数据
// 全部 tab 分页
const allCurrentPage = ref(1);
const allPageSize = ref(50);
const allHasMore = ref(true); // 是否还有更多数据
// 深度检索分页
const currentPage = ref(1);
const pageSize = ref(50);
const totalCount = ref(0);
// 快问快答分页
const quickCurrentPage = ref(1);
const quickPageSize = ref(50);
const quickHasMore = ref(true); // 是否还有更多数据
// 过滤后的对话列表
const filteredChats = computed(() => {
let chats = chatList.value;
// 按类型过滤
if (currentTab.value === "quick") {
chats = chats.filter((chat) => chat.type === "quick" || !chat.type);
} else if (currentTab.value === "deep") {
chats = chats.filter((chat) => chat.type === "deep");
}
// 按搜索关键词过滤
if (searchKeyword.value.trim()) {
const keyword = searchKeyword.value.trim().toLowerCase();
chats = chats.filter((chat) => {
const title = chat.title?.toLowerCase() || "";
const question = chat.question?.toLowerCase() || "";
return title.includes(keyword) || question.includes(keyword);
});
}
return chats;
});
// 按时间分组的对话列表
const groupedChats = computed(() => {
const groups: { period: string; chats: ChatSession[] }[] = [];
const today = new Date();
const yesterday = new Date(today);
yesterday.setDate(yesterday.getDate() - 1);
const weekAgo = new Date(today);
weekAgo.setDate(weekAgo.getDate() - 7);
const todayChats: ChatSession[] = [];
const yesterdayChats: ChatSession[] = [];
const weekChats: ChatSession[] = [];
const olderChats: ChatSession[] = [];
filteredChats.value.forEach((chat) => {
const chatDate = new Date(chat.createdAt);
if (isSameDay(chatDate, today)) {
todayChats.push(chat);
} else if (isSameDay(chatDate, yesterday)) {
yesterdayChats.push(chat);
} else if (chatDate >= weekAgo) {
weekChats.push(chat);
} else {
olderChats.push(chat);
}
});
if (todayChats.length > 0) {
groups.push({
period: t("chatHistoryPanel.periods.today"),
chats: todayChats,
});
}
if (yesterdayChats.length > 0) {
groups.push({
period: t("chatHistoryPanel.periods.yesterday"),
chats: yesterdayChats,
});
}
if (weekChats.length > 0) {
groups.push({
period: t("chatHistoryPanel.periods.last7Days"),
chats: weekChats,
});
}
if (olderChats.length > 0) {
groups.push({
period: t("chatHistoryPanel.periods.older"),
chats: olderChats,
});
}
return groups;
});
// 判断是否为同一天
const isSameDay = (date1: Date, date2: Date): boolean => {
return (
date1.getFullYear() === date2.getFullYear() &&
date1.getMonth() === date2.getMonth() &&
date1.getDate() === date2.getDate()
);
};
// 切换选项卡
const switchTab = (tab: "all" | "quick" | "deep") => {
currentTab.value = tab;
// 切换 tab 时重置分页并重新加载数据
if (tab === "all") {
allCurrentPage.value = 1;
allPageSize.value = 50;
allHasMore.value = true; // 重置是否有更多数据的标志
} else if (tab === "deep") {
currentPage.value = 1;
pageSize.value = 50;
} else if (tab === "quick") {
quickCurrentPage.value = 1;
quickPageSize.value = 50;
quickHasMore.value = true; // 重置是否有更多数据的标志
}
loadChats();
};
// 处理搜索
const handleSearch = () => {
console.log("搜索关键词:", searchKeyword.value);
};
// 清除搜索
const clearSearch = () => {
searchKeyword.value = "";
console.log("清除搜索");
};
// 加载历史对话 - 根据当前 tab 加载对应的历史记录
const loadChats = async () => {
try {
loading.value = true;
let baichuanChats: ChatSession[] = [];
let deepSearchChats: ChatSession[] = [];
// 根据当前 tab 决定加载哪些数据
if (currentTab.value === "all") {
// 全部:加载百川和深度检索(使用分页参数)
const [baichuanResponse, scheduleResponse] = await Promise.all([
// 获取百川的历史对话(传递 provider=baichuan)
listChats({
page: allCurrentPage.value - 1, // listChats 接口 page 从 0 开始
size: allPageSize.value,
provider: "baichuan",
}),
// 获取定时任务列表(深度检索任务)
getScheduleList({
page: allCurrentPage.value,
size: allPageSize.value,
}),
]);
// 处理百川的对话记录
const baichuanData = baichuanResponse.data || [];
baichuanChats = baichuanData
.filter((chat: ChatSession) => !chat.deleted)
.map((chat: ChatSession) => ({
...chat,
provider: "baichuan",
type: "quick" as const,
}));
// 处理定时任务列表(深度检索任务)
const scheduleData = scheduleResponse?.data || {};
const scheduleItems = scheduleData.items || [];
// 过滤并处理定时任务数据
const filteredItems = scheduleItems.filter(
(item: any) => item && item.id !== undefined && !item.deleted,
);
// 将定时任务转换为深度检索对话格式
deepSearchChats = filteredItems.map((item: any) => {
// 解析 paramsJson 获取参数
let paramsData = null;
try {
if (item.paramsJson) {
paramsData = JSON.parse(item.paramsJson);
}
} catch (error) {
console.warn(`解析任务 ${item.id} 参数失败:`, error);
}
return {
id: item.id,
title:
item.title ||
item.question ||
t("chatHistoryPanel.defaultDeepSearchTitle"),
createdAt: item.createdAt || item.updatedAt,
deleted: item.deleted || false,
provider: "deerflow",
type: "deep" as const,
question: item.question,
data: paramsData,
statusIcon: "/jiansuo.svg",
isFinished: item.enabled,
hasData: undefined, // 定时任务没有 hasData 字段
threadId: undefined, // 定时任务没有 threadId 字段
};
});
// 根据返回的数据长度判断是否还有更多数据
// 如果任一数据源返回的数据长度等于 pageSize,说明可能还有更多数据
const baichuanHasMore = baichuanData.length >= allPageSize.value;
const deepSearchHasMore = filteredItems.length >= allPageSize.value;
allHasMore.value = baichuanHasMore || deepSearchHasMore;
} else if (currentTab.value === "quick") {
// 快问快答:只加载百川(使用分页参数)
const baichuanResponse = await listChats({
page: quickCurrentPage.value - 1, // listChats 接口 page 从 0 开始
size: quickPageSize.value,
provider: "baichuan",
});
const responseData = baichuanResponse.data || [];
baichuanChats = responseData
.filter((chat: ChatSession) => !chat.deleted)
.map((chat: ChatSession) => ({
...chat,
provider: "baichuan",
type: "quick" as const,
}));
// 根据返回的数据长度判断是否还有更多数据
// 如果返回的数据长度等于 pageSize,说明可能还有更多数据
quickHasMore.value = responseData.length >= quickPageSize.value;
} else if (currentTab.value === "deep") {
// 深度检索:只加载定时任务列表(使用分页参数)
const scheduleResponse = await getScheduleList({
page: currentPage.value,
size: pageSize.value,
});
const scheduleData = scheduleResponse?.data || {};
const scheduleItems = scheduleData.items || [];
// 保存总数用于分页
totalCount.value = scheduleData.total || 0;
// 过滤并处理定时任务数据
const filteredItems = scheduleItems.filter(
(item: any) => item && item.id !== undefined && !item.deleted,
);
// 将定时任务转换为深度检索对话格式
deepSearchChats = filteredItems.map((item: any) => {
// 解析 paramsJson 获取参数
let paramsData = null;
try {
if (item.paramsJson) {
paramsData = JSON.parse(item.paramsJson);
}
} catch (error) {
console.warn(`解析任务 ${item.id} 参数失败:`, error);
}
return {
id: item.id,
title:
item.title ||
item.question ||
t("chatHistoryPanel.defaultDeepSearchTitle"),
createdAt: item.createdAt || item.updatedAt,
deleted: item.deleted || false,
provider: "deerflow",
type: "deep" as const,
question: item.question,
data: paramsData,
statusIcon: "/jiansuo.svg",
isFinished: item.enabled,
hasData: undefined, // 定时任务没有 hasData 字段
threadId: undefined, // 定时任务没有 threadId 字段
};
});
}
// 合并列表并按时间降序排序(最新的在前)
const allChats = [...baichuanChats, ...deepSearchChats];
allChats.sort((a, b) => {
const timeA = new Date(a.createdAt).getTime();
const timeB = new Date(b.createdAt).getTime();
return timeB - timeA; // 降序排序
});
chatList.value = allChats;
} catch (error) {
ElMessage.error("加载历史对话失败");
chatList.value = [];
} finally {
loading.value = false;
}
};
// 格式化相对时间
const formatRelativeDate = (dateString: string): string => {
if (!dateString) return "";
try {
const date = new Date(dateString);
if (isNaN(date.getTime())) {
return dateString;
}
const now = new Date();
const diffTime = Math.abs(now.getTime() - date.getTime());
const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24));
if (diffDays === 1) {
return t("chatHistoryPanel.dateFormat.today");
} else if (diffDays === 2) {
return t("chatHistoryPanel.dateFormat.yesterday");
} else if (diffDays <= 7) {
return t("chatHistoryPanel.dateFormat.daysAgo", { days: diffDays - 1 });
} else {
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, "0");
const day = date.getDate().toString().padStart(2, "0");
return `${year}/${month}/${day}`;
}
} catch (error) {
console.error("Error formatting relative date:", error);
return dateString;
}
};
// 获取对话类型标签
const getChatTypeLabel = (chat: ChatSession): string => {
if (chat.type === "deep") {
return t("chatHistoryPanel.chatTypes.deep");
}
return t("chatHistoryPanel.chatTypes.quick");
};
// 获取对话类型样式类
const getChatTypeClass = (chat: ChatSession): string => {
if (chat.type === "deep") {
return "type-deep";
}
return "type-quick";
};
// 处理对话点击
const handleChatClick = (chat: ChatSession) => {
console.log("点击对话:", chat);
emit("chatSelect", chat);
};
// 删除对话
const handleDelete = async (chatId: number) => {
try {
// 查找对话记录,判断是否为深度检索任务
const chat = chatList.value.find((c) => c.id === chatId);
if (!chat) {
ElMessage.error("未找到该对话记录");
return;
}
let response: any;
// 根据对话类型调用不同的删除接口
if (chat.type === "deep") {
// 深度检索任务(定时任务),调用 DELETE /agent/deep-search-schedules/{id}
response = await deleteSchedule(chatId);
} else {
// 普通对话(豆包或百川),调用原有的删除接口
response = await deleteChat(chatId);
}
if (response.code === 200 || response.status === 200) {
chatList.value = chatList.value.filter((c) => c.id !== chatId);
ElMessage.success(
chat.type === "deep"
? t("chatHistoryPanel.messages.deleteDeepSearchSuccess")
: t("chatHistoryPanel.messages.deleteChatSuccess"),
);
// ⭐ 通知父组件删除成功,需要更新左侧边栏列表
emit("deleted", chatId);
} else {
ElMessage.error(response.message || "删除失败");
}
} catch (error) {
console.error("删除历史对话失败:", error);
ElMessage.error("删除失败");
}
};
// 全部 tab 分页大小改变处理
const handleAllSizeChange = (newSize: number) => {
allPageSize.value = newSize;
allCurrentPage.value = 1; // 重置到第一页
loadChats();
};
// 全部 tab 当前页改变处理
const handleAllCurrentChange = (newPage: number) => {
allCurrentPage.value = newPage;
loadChats();
};
// 深度检索分页大小改变处理
const handleSizeChange = (newSize: number) => {
pageSize.value = newSize;
currentPage.value = 1; // 重置到第一页
loadChats();
};
// 深度检索当前页改变处理
const handleCurrentChange = (newPage: number) => {
currentPage.value = newPage;
loadChats();
};
// 快问快答分页大小改变处理
const handleQuickSizeChange = (newSize: number) => {
quickPageSize.value = newSize;
quickCurrentPage.value = 1; // 重置到第一页
loadChats();
};
// 快问快答当前页改变处理
const handleQuickCurrentChange = (newPage: number) => {
quickCurrentPage.value = newPage;
loadChats();
};
// 组件挂载时加载数据
onMounted(() => {
loadChats();
});
</script>
<style lang="scss" scoped>
.chat-history-panel {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
background: var(--color-bg, #fff);
animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.panel-header {
width: 90%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0px;
.panel-title {
font-size: 20px;
font-weight: 600;
color: var(--color-text, #333);
margin: 0;
}
.panel-close {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
color: var(--color-text-secondary, #666);
&:hover {
background: var(--color-hover, rgba(0, 0, 0, 0.05));
color: var(--color-text, #333);
}
i {
font-size: 18px;
}
}
}
.panel-tabs {
width: 90%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 0px;
gap: 12px;
.tabs-left {
display: flex;
gap: 12px;
}
.tabs-right {
display: flex;
align-items: center;
}
.tab-item {
padding: 8px 20px;
font-size: 14px;
color: var(--color-text-secondary, #666);
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
white-space: nowrap;
user-select: none;
&:hover {
background: var(--color-hover, rgba(0, 0, 0, 0.05));
color: var(--color-text, #333);
}
&.active {
background: #1890ff;
color: #fff;
font-weight: 500;
}
}
.search-container {
position: relative;
display: flex;
align-items: center;
width: 200px;
height: 32px;
background: var(--color-bg, #f5f5f5);
border: 1px solid var(--color-border, #e0e0e0);
border-radius: 4px;
padding: 0 12px;
transition: all 0.2s;
&:hover {
border-color: rgba(24, 144, 255, 0.3);
}
&:focus-within {
border-color: #1890ff;
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}
.search-icon {
font-size: 12px;
color: var(--color-text-secondary, #999);
margin-right: 8px;
flex-shrink: 0;
}
.search-input {
flex: 1;
border: none;
outline: none;
background: transparent;
font-size: 12px;
color: var(--color-text, #333);
line-height: 1;
&::placeholder {
color: var(--color-text-secondary, #999);
font-size: 12px;
}
}
.clear-icon {
font-size: 12px;
color: var(--color-text-secondary, #999);
cursor: pointer;
margin-left: 8px;
flex-shrink: 0;
transition: color 0.2s;
&:hover {
color: var(--color-text, #333);
}
}
}
}
.panel-content {
width: 90%;
margin: 0 auto;
flex: 1;
overflow-y: auto;
padding: 10px 0px;
scrollbar-width: thin;
scrollbar-color: var(--color-border, #ddd) transparent;
display: flex;
flex-direction: column;
justify-content: space-between;
&::-webkit-scrollbar {
width: 8px;
}
&::-webkit-scrollbar-track {
background: transparent;
}
&::-webkit-scrollbar-thumb {
background: var(--color-border, #ddd);
border-radius: 4px;
&:hover {
background: var(--color-text-secondary, #999);
}
}
}
.loading-state,
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 20px;
gap: 12px;
color: var(--color-text-secondary, #999);
i {
font-size: 32px;
}
span {
font-size: 14px;
}
}
.chat-list {
display: flex;
flex-direction: column;
}
.pagination-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
// 处理下拉菜单的背景色
:deep(.el-select-dropdown) {
background-color: var(--color-bg, #fff);
border-color: var(--color-border, #e0e0e0);
.el-select-dropdown__item {
background-color: var(--color-bg, #fff);
color: var(--color-text, #333);
&:hover {
background-color: var(--color-hover, rgba(0, 0, 0, 0.05));
color: var(--color-text, #333);
}
&.selected {
background-color: rgba(24, 144, 255, 0.1);
color: #1890ff;
}
}
}
:deep(.el-pagination) {
.btn-prev,
.btn-next,
.el-pager li {
background-color: var(--color-bg, #fff);
color: var(--color-text, #333);
border: 1px solid var(--color-border, #e0e0e0);
&:hover {
background-color: var(--color-hover, rgba(0, 0, 0, 0.05));
color: var(--color-text, #333);
}
&.is-active {
background-color: #1890ff;
color: #fff;
border-color: #1890ff;
}
}
.el-pagination__sizes {
.el-select {
.el-select__wrapper {
background-color: transparent;
box-shadow: 0 0 0 1px var(--color-border, #e0e0e0) inset;
&:hover {
box-shadow: 0 0 0 1px rgba(24, 144, 255, 0.3) inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #1890ff inset;
}
}
.el-input__wrapper {
background-color: var(--color-bg, #fff);
box-shadow: 0 0 0 1px var(--color-border, #e0e0e0) inset;
.el-input__inner {
background-color: transparent;
color: var(--color-text, #333);
}
&:hover {
box-shadow: 0 0 0 1px rgba(24, 144, 255, 0.3) inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #1890ff inset;
}
}
.el-input__inner {
background-color: var(--color-bg, #fff);
color: var(--color-text, #333);
border-color: var(--color-border, #e0e0e0);
}
}
}
.el-pagination__jump {
color: var(--color-text-secondary, #666);
.el-input {
.el-input__wrapper {
background-color: var(--color-bg, #fff);
box-shadow: 0 0 0 1px var(--color-border, #e0e0e0) inset;
.el-input__inner {
background-color: transparent;
color: var(--color-text, #333);
}
&:hover {
box-shadow: 0 0 0 1px rgba(24, 144, 255, 0.3) inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #1890ff inset;
}
}
}
.el-input__inner {
background-color: var(--color-bg, #fff);
color: var(--color-text, #333);
border-color: var(--color-border, #e0e0e0);
}
}
}
}
.chat-group {
.group-header {
font-size: 12px;
font-weight: 700;
color: rgba(0, 0, 0, 0.5);
margin-bottom: 12px;
padding: 0 4px;
}
.group-chats {
display: flex;
flex-direction: column;
gap: 4px;
}
}
.chat-item {
display: flex;
align-items: center;
gap: 12px;
padding: 4px 2px;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s;
position: relative;
&:hover {
background: var(--color-hover, rgba(0, 0, 0, 0.05));
.delete-icon {
opacity: 1;
}
}
.chat-icon {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-text-secondary, #666);
flex-shrink: 0;
transition: color 0.2s;
i {
font-size: 16px;
&.fa-search {
color: #722ed1; // 深度检索使用紫色
}
&.fa-comment-dots {
color: #1890ff; // 快问快答使用蓝色
}
}
.status-icon {
width: 16px;
height: 16px;
object-fit: contain;
opacity: 0.9;
&:hover {
opacity: 1;
}
}
}
&:hover .chat-icon {
i.fa-search {
color: #9254de;
}
i.fa-comment-dots {
color: #40a9ff;
}
}
.chat-content {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
gap: 4px;
}
.chat-title {
font-size: 14px;
font-weight: 500;
color: var(--color-text, #333);
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2; // 最多显示2行
-webkit-box-orient: vertical;
white-space: normal; // 允许换行
word-break: break-word; // 长单词换行
}
.chat-meta {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
}
.chat-type-tag {
padding: 2px 6px;
border-radius: 3px;
font-size: 11px;
font-weight: 500;
&.type-quick {
background: rgba(24, 144, 255, 0.1);
color: #1890ff;
}
&.type-deep {
background: rgba(114, 46, 209, 0.1);
color: #722ed1;
}
}
.chat-date {
color: var(--color-text-secondary, #999);
}
.chat-actions {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.delete-icon {
width: 16px;
height: 16px;
cursor: pointer;
opacity: 0;
transition: all 0.2s;
filter: brightness(0) saturate(100%) invert(50%);
&:hover {
filter: brightness(0) saturate(100%) invert(30%);
transform: scale(1.1);
}
}
}
/* 深色主题适配 */
:root.theme-dark {
.chat-history-panel {
background: var(--color-bg, #1a1a1a);
}
.panel-header {
.panel-title {
color: var(--color-text, #ccc);
}
.panel-close {
color: var(--color-text-secondary, #888);
&:hover {
background: var(--color-hover, rgba(255, 255, 255, 0.1));
color: var(--color-text, #ccc);
}
}
}
.panel-tabs {
.tab-item {
color: var(--color-text-secondary, #888);
&:hover {
background: var(--color-hover, rgba(255, 255, 255, 0.05));
color: var(--color-text, #ccc);
}
&.active {
background: #1890ff;
color: #fff;
}
}
.search-container {
background: var(--color-bg, #262626);
border-color: var(--color-border, #444);
&:hover {
border-color: rgba(24, 144, 255, 0.5);
}
&:focus-within {
border-color: #1890ff;
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.15);
}
.search-icon {
color: var(--color-text-secondary, #666);
}
.search-input {
color: var(--color-text, #ccc);
&::placeholder {
color: var(--color-text-secondary, #666);
}
}
.clear-icon {
color: var(--color-text-secondary, #666);
&:hover {
color: var(--color-text, #ccc);
}
}
}
}
.loading-state,
.empty-state {
color: var(--color-text-secondary, #666);
}
.chat-group {
.group-header {
color: var(--color-text, #ccc);
}
}
.chat-item {
&:hover {
background: var(--color-hover, rgba(255, 255, 255, 0.05));
}
.chat-icon {
color: var(--color-text-secondary, #888);
i {
color: var(--color-text-secondary, #888);
&.fa-search {
color: #b37feb; // 深度检索使用浅紫色(深色主题)
}
&.fa-comment-dots {
color: #69c0ff; // 快问快答使用浅蓝色(深色主题)
}
}
}
&:hover .chat-icon {
i.fa-search {
color: #d3adf7;
}
i.fa-comment-dots {
color: #91d5ff;
}
}
.chat-title {
color: var(--color-text, #ccc);
}
.chat-date {
color: var(--color-text-secondary, #666);
}
.delete-icon {
filter: brightness(0) saturate(100%) invert(70%);
&:hover {
filter: brightness(0) saturate(100%) invert(90%);
}
}
}
.pagination-container {
// 处理下拉菜单的背景色(深色主题)
:deep(.el-select-dropdown) {
background-color: var(--color-bg, #262626);
border-color: var(--color-border, #444);
.el-select-dropdown__item {
background-color: var(--color-bg, #262626);
color: var(--color-text, #ccc);
&:hover {
background-color: var(--color-hover, rgba(255, 255, 255, 0.1));
color: var(--color-text, #ccc);
}
&.selected {
background-color: rgba(24, 144, 255, 0.2);
color: #69c0ff;
}
}
}
:deep(.el-pagination) {
.btn-prev,
.btn-next,
.el-pager li {
background-color: var(--color-bg, #262626);
color: var(--color-text, #ccc);
border-color: var(--color-border, #444);
&:hover {
background-color: var(--color-hover, rgba(255, 255, 255, 0.1));
color: var(--color-text, #ccc);
}
&.is-active {
background-color: #1890ff;
color: #fff;
border-color: #1890ff;
}
}
.el-pagination__sizes {
.el-select {
.el-select__wrapper {
background-color: transparent;
box-shadow: 0 0 0 1px var(--color-border, #444) inset;
&:hover {
box-shadow: 0 0 0 1px rgba(24, 144, 255, 0.5) inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #1890ff inset;
}
}
.el-input__wrapper {
background-color: var(--color-bg, #262626);
box-shadow: 0 0 0 1px var(--color-border, #444) inset;
.el-input__inner {
background-color: transparent;
color: var(--color-text, #ccc);
}
&:hover {
box-shadow: 0 0 0 1px rgba(24, 144, 255, 0.5) inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #1890ff inset;
}
}
.el-input__inner {
background-color: var(--color-bg, #262626);
color: var(--color-text, #ccc);
border-color: var(--color-border, #444);
}
}
}
.el-pagination__jump {
color: var(--color-text-secondary, #666);
.el-input {
.el-input__wrapper {
background-color: var(--color-bg, #262626);
box-shadow: 0 0 0 1px var(--color-border, #444) inset;
.el-input__inner {
background-color: transparent;
color: var(--color-text, #ccc);
}
&:hover {
box-shadow: 0 0 0 1px rgba(24, 144, 255, 0.5) inset;
}
&.is-focus {
box-shadow: 0 0 0 1px #1890ff inset;
}
}
}
.el-input__inner {
background-color: var(--color-bg, #262626);
color: var(--color-text, #ccc);
border-color: var(--color-border, #444);
}
}
}
}
}
</style>