Files
stock-advisor/templates/recommend.html
T

27 lines
950 B
HTML

{% 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 %}