refactor(AI): 移除无用的日志输出并优化产品名称设置

- 在 HotProducts组件中移除了多余的 console.log语句
- 在 AI index组件中添加了产品名称的更新逻辑
This commit is contained in:
陈昱达
2025-06-10 14:41:23 +08:00
parent 42430eac00
commit 7a229e413f
2 changed files with 1 additions and 1 deletions

View File

@@ -63,7 +63,6 @@ export default {
text: item.productName,
})
this.$emit('update:messageList', this.messagesList)
console.log(this.messagesList)
},
toggleShowAll() {
this.showAll = !this.showAll

View File

@@ -180,6 +180,7 @@ export default {
},
setProductName(e) {
console.log(e)
this.productName = e
},
handleScroll() {
const messageArea = this.$refs.messageArea