Browse Source

Merge branch 'hongxilin/feature-20250628153758-财神优化:字正确性,一致性等' into milestone-20250710-上线前优化

dev
no99 2 days ago
parent
commit
b187f613bf
  1. 16
      src/views/AIchat.vue
  2. 3
      src/views/components/HistoryRecord.vue

16
src/views/AIchat.vue

@ -2467,7 +2467,7 @@ watch(
chatStore.messages.push({
sender: "user",
timestamp: clickRecord.value.createdTime,
content: clickRecord.value.keyword,
content: clickRecord.value.stockName+'('+clickRecord.value.stockCode+')',
audioArray: [
clickRecord.value.wokeFlowData.One.url,
clickRecord.value.wokeFlowData.Two.url,
@ -2814,7 +2814,7 @@ function KlineCanvsEcharts(containerId) {
name: "\u4eea\u8868\u76d8",
type: "gauge",
center: ["50%", "50%"],
radius: "90%",
radius: window.innerWidth > 768 ? "90%" : "70%",
startAngle: 140,
endAngle: -140,
min: 0,
@ -3515,7 +3515,9 @@ function KlineCanvsEcharts(containerId) {
? "14%"
: window.innerWidth > 768
? "18%"
: "20%",
: window.innerWidth > 375
? "20%"
: "22%",
right:
window.innerWidth > 1024
? "9%"
@ -3533,7 +3535,9 @@ function KlineCanvsEcharts(containerId) {
? "14%"
: window.innerWidth > 768
? "18%"
: "20%",
: window.innerWidth > 375
? "20%"
: "22%",
right:
window.innerWidth > 1024
? "9%"
@ -3551,7 +3555,9 @@ function KlineCanvsEcharts(containerId) {
? "14%"
: window.innerWidth > 768
? "18%"
: "20%",
: window.innerWidth > 375
? "20%"
: "22%",
right:
window.innerWidth > 1024
? "9%"

3
src/views/components/HistoryRecord.vue

@ -259,7 +259,8 @@
</div>
<div class="record-msg">
<div class="record-text">
{{ record.stockCode }}
<span class="stock-name">{{ record.stockName }}</span>
<span class="stock-code">({{ record.stockCode }})</span>
<div v-if="history.name === '置顶'">
<svg
t="1755227529729"

Loading…
Cancel
Save