| 12345678910111213141516171819202122232425 |
- <?php
- use common\helpers\Url;
- ?>
- <div class="modal-header">
- <h4 class="modal-title">短信异常发送报表统计</h4>
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
- </div>
- <div class="modal-body">
- <?= \common\widgets\echarts\Echarts::widget([
- 'config' => [
- 'server' => Url::to(['stat']),
- 'height' => '300px',
- ],
- 'themeConfig' => [
- 'today' => '今日',
- 'yesterday' => '昨日',
- 'thisWeek' => '本周',
- 'thisMonth' => '本月',
- 'thisYear' => '本年',
- ]
- ])?>
- </div>
|