stat.php 673 B

12345678910111213141516171819202122232425
  1. <?php
  2. use common\helpers\Url;
  3. ?>
  4. <div class="modal-header">
  5. <h4 class="modal-title">短信异常发送报表统计</h4>
  6. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
  7. </div>
  8. <div class="modal-body">
  9. <?= \common\widgets\echarts\Echarts::widget([
  10. 'config' => [
  11. 'server' => Url::to(['stat']),
  12. 'height' => '300px',
  13. ],
  14. 'themeConfig' => [
  15. 'today' => '今日',
  16. 'yesterday' => '昨日',
  17. 'thisWeek' => '本周',
  18. 'thisMonth' => '本月',
  19. 'thisYear' => '本年',
  20. ]
  21. ])?>
  22. </div>
粤ICP备19079148号