互联网搜索独立页面 + 一键保存全部功能

- 新增独立搜索页面 /search
- 支持一键保存所有搜索结果到内容库
- 支持自动抓取和自动保存选项
- 显示保存进度条
- 主页添加搜索入口链接
- 搜索结果状态实时显示(已抓取/已保存)
This commit is contained in:
2026-07-13 16:38:14 +08:00
parent 20f3ec1f18
commit e13e4074f1
6 changed files with 879 additions and 13 deletions
+5
View File
@@ -38,6 +38,11 @@ app.register_blueprint(system_bp)
def index():
return render_template('index.html')
# 搜索页面
@app.route('/search')
def search_page():
return render_template('search.html')
# API首页
@app.route('/api')
def api_index():