取消字典数据加密

This commit is contained in:
冯辉
2026-05-01 02:48:55 +08:00
parent 6e63f81ede
commit 57b18c0a65
6 changed files with 46 additions and 28 deletions

View File

@@ -673,14 +673,15 @@ const scrollToBottom = throttle(function () {
}, 500);
function getGuess() {
// $api.chatRequest('/guest', { sessionId: chatSessionID.value }, 'POST').then((res) => {
$api.chatRequest('/guest', undefined, 'POST').then((res) => {
$api.chatRequest('/guest', { sessionId: chatSessionID.value }, 'POST').then((res) => {
console.log('getGuess ---- res:', res);
guessList.value = res.data;
showGuess.value = true;
nextTick(() => {
scrollToBottom();
});
}).catch((err) => {
console.warn('getGuess 请求失败:', err);
});
}