diff --git a/www/app.js b/www/app.js index 38d30bd..4ac8069 100644 --- a/www/app.js +++ b/www/app.js @@ -1324,6 +1324,7 @@ function filterDiscoverAgents(keyword) { if (!keyword) { // 显示所有 showDiscoverSection('hot', systemAgents.filter(a => a.category === 'hot')); + showDiscoverSection('basic', systemAgents.filter(a => a.category === 'basic')); showDiscoverSection('work', systemAgents.filter(a => a.category === 'work')); showDiscoverSection('study', systemAgents.filter(a => a.category === 'study')); showDiscoverSection('life', systemAgents.filter(a => a.category === 'life')); @@ -1338,6 +1339,7 @@ function filterDiscoverAgents(keyword) { // 显示搜索结果 showDiscoverSection('hot', filtered.filter(a => a.category === 'hot')); + showDiscoverSection('basic', filtered.filter(a => a.category === 'basic')); showDiscoverSection('work', filtered.filter(a => a.category === 'work')); showDiscoverSection('study', filtered.filter(a => a.category === 'study')); showDiscoverSection('life', filtered.filter(a => a.category === 'life'));