智能荐股系统 v1.0.0:股票池/行情/新闻RAG/机构持仓/多因子评分/AI深度研报

This commit is contained in:
2026-08-19 19:36:32 +08:00
commit 90a9f9b212
29 changed files with 3332 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{% extends "base.html" %}
{% block title %}荐股中心{% endblock %}
{% block page_title %}荐股中心{% endblock %}
{% block content %}
<div class="card">
<div class="pill-bar" id="ratingPills">
<button class="pill active" data-r="all">全部</button>
<button class="pill" data-r="强烈推荐">强烈推荐</button>
<button class="pill" data-r="推荐">推荐</button>
<button class="pill" data-r="关注">关注</button>
<button class="pill" data-r="观望">观望</button>
</div>
<div style="overflow:auto">
<table>
<thead><tr>
<th>排名</th><th>股票</th><th>现价</th><th>今日</th><th>5日</th>
<th>评分</th><th>评级</th><th>六因子</th><th>推荐理由</th><th>操作</th>
</tr></thead>
<tbody id="tb"></tbody>
</table>
</div>
</div>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='js/recommend.js') }}"></script>
{% endblock %}