Files
order/web/templates/stat/share.html

63 lines
2.4 KiB
HTML
Raw Normal View History

2019-07-18 08:59:26 +08:00
{% extends "common/layout_main.html" %}
{% block content %}
2019-08-06 15:21:15 +08:00
{% include "common/tab_stat.html" %}
2019-07-18 08:59:26 +08:00
<div class="row m-t">
<div class="col-lg-12" id="container" style="height: 400px;" data-highcharts-chart="0">
图标使用Highchart
</div>
<div class="col-lg-12 m-t">
<form class="form-inline" id="search_form_wrap">
<div class="row p-w-m">
<div class="form-group">
<div class="input-group">
2019-08-06 15:21:15 +08:00
<input type="text" placeholder="请选择开始时间" name="date_from" class="form-control" value="{{ search_con['date_from'] }}">
2019-07-18 08:59:26 +08:00
</div>
</div>
<div class="form-group m-r m-l">
<label></label>
</div>
<div class="form-group">
<div class="input-group">
2019-08-06 15:21:15 +08:00
<input type="text" placeholder="请选择结束时间" name="date_to" class="form-control" value="{{ search_con['date_to'] }}">
2019-07-18 08:59:26 +08:00
</div>
</div>
<div class="form-group">
<a class="btn btn-w-m btn-outline btn-primary search">搜索</a>
</div>
</div>
<hr>
</form>
<table class="table table-bordered m-t">
<thead>
<tr>
<th>日期</th>
<th>分享次数</th>
</tr>
</thead>
<tbody>
2019-08-06 15:21:15 +08:00
{% if list %}
{% for item in list %}
2019-07-18 08:59:26 +08:00
<tr>
2019-08-06 15:21:15 +08:00
<td>{{ item.date }}</td>
<td>{{ item.total_shared_count }}</td>
2019-07-18 08:59:26 +08:00
</tr>
2019-08-06 15:21:15 +08:00
{% endfor %}
{% else %}
<tr><td colspan="2">暂无数据~~</td></tr>
{% endif %}
2019-07-18 08:59:26 +08:00
</tbody>
</table>
2019-08-06 15:21:15 +08:00
<!--分页代码已被封装到统一模板文件中-->
{% include 'common/pagenation.html' %}
2019-07-18 08:59:26 +08:00
</div>
</div>
2019-08-06 15:21:15 +08:00
{% endblock %}
{% block css %}
<link href="{{ buildStaticUrl('/plugins/datetimepicker/jquery.datetimepicker.min.css') }}" rel="stylesheet">
{% endblock %}
{% block js %}
<script src="{{ buildStaticUrl('/plugins/highcharts/highcharts.js') }}"></script>
<script src="{{ buildStaticUrl('/js/chart.js') }}"></script>
<script src="{{ buildStaticUrl('/plugins/datetimepicker/jquery.datetimepicker.full.min.js') }}"></script>
<script src="{{ buildStaticUrl('/js/stat/share.js') }}"></script>
2019-07-18 08:59:26 +08:00
{% endblock %}