frontend去ai化

This commit is contained in:
2026-04-20 16:02:50 +08:00
parent bba6de25ac
commit a039b957d0
15 changed files with 15 additions and 109 deletions
+2 -3
View File
@@ -1,4 +1,3 @@
<!-- 兴趣关键词页添加/删除关键词查看命中事件 -->
<script setup lang="ts">
import { onMounted, ref, computed } from 'vue'
@@ -64,10 +63,10 @@ async function loadMatchedEvents() {
loadingMatched.value = true
matchedError.value = ''
try {
const result = await fetchRecommendedEvents(userId.value, {
const result = await fetchRecommendedEvents(userId.value, {
limit: 30,
hours: hoursRange.value,
sort_by: sortBy.value
sort_by: sortBy.value
})
matchedEvents.value = result.data
} catch (e) {