diff --git a/src/api/AiEmotionApi.js b/src/api/AiEmotionApi.js
index 31bcc38..6d640d0 100644
--- a/src/api/AiEmotionApi.js
+++ b/src/api/AiEmotionApi.js
@@ -15,7 +15,7 @@ export const getReplyAPI = function (params) {
headers: {
"Content-Type": "application/json",
Authorization:
- "Bearer pat_cOhJRgrEpjXwJJLW1N3YNjCxy19HYTpMFY6XlNCLi4ogm5tdfV266gWIB7MeaRIU",
+ "Bearer pat_D6vYu7FNXfkSJn8GpmA9oC4DY8LkcbhzrSZuJwuTHT0aYn2uqZ6P5cBfRD0kwZYR",
},
});
};
@@ -31,7 +31,7 @@ export const getConclusionAPI = function (params) {
headers: {
"Content-Type": "application/json",
Authorization:
- "Bearer pat_cOhJRgrEpjXwJJLW1N3YNjCxy19HYTpMFY6XlNCLi4ogm5tdfV266gWIB7MeaRIU",
+ "Bearer pat_D6vYu7FNXfkSJn8GpmA9oC4DY8LkcbhzrSZuJwuTHT0aYn2uqZ6P5cBfRD0kwZYR",
},
});
};
diff --git a/src/views/AiEmotion.vue b/src/views/AiEmotion.vue
index 4e02cdf..005387b 100644
--- a/src/views/AiEmotion.vue
+++ b/src/views/AiEmotion.vue
@@ -35,77 +35,75 @@
-
-
+
+
-
-
-
-
- {{ stockName }}{{ stockName ? '量子四维矩阵图' : '' }}
-
+
-
+
-
-
+
+
-

-
股市温度计
+

+
股市温度计
-
-
股票温度:{{ data2 ?? "NA" }}
-
市场温度:{{ data1 }}
+
+
股票温度:{{ data2 ?? "NA" }}
+
市场温度:{{ data1 }}
-
+
-
-
-

-
情绪解码器
+
+
-
-
+
-
-
-

-
情绪探底雷达
+
+
-
-
+
-
-
-

-
情绪能量转化器
+
+
-
-
-
+
-
-
+
@@ -1420,10 +1418,10 @@ function renderCharts(data) {
// 检查DOM元素是否存在
console.log('DOM元素检查:', {
- marketTemperatureDOM: !!document.querySelector('.class03'),
- emotionDecodDOM: !!document.querySelector('.class04'),
- emotionalBottomRadarDOM: !!document.querySelector('.class05'),
- emoEnergyConverterDOM: !!document.querySelector('.class06')
+ marketTemperatureDOM: !!document.querySelector('.market-temperature-section'),
+ emotionDecodDOM: !!document.querySelector('.emotion-decoder-section'),
+ emotionalBottomRadarDOM: !!document.querySelector('.bottom-radar-section'),
+ emoEnergyConverterDOM: !!document.querySelector('.energy-converter-section')
});
// 检查具体的组件元素
@@ -1722,7 +1720,7 @@ onMounted(async () => {
console.log('AiEmotion页面:窗口大小变化,触发容器和图表resize');
// 强制重新计算容器布局
- const mainContainer = document.querySelector('.class01');
+ const mainContainer = document.querySelector('.main');
if (mainContainer) {
// 触发重排,确保容器尺寸正确更新
mainContainer.style.display = 'none';
@@ -1894,34 +1892,37 @@ defineExpose({