info.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. use common\helpers\Url;
  3. use common\helpers\Html;
  4. $this->title = '队列监控';
  5. $this->params['breadcrumbs'][] = ['label' => $this->title];
  6. ?>
  7. <div class="row">
  8. <div class="col-lg-12">
  9. <div class="box">
  10. <div class="box-header with-border">
  11. <h3 class="box-title"><?= Html::encode($this->title) ?></h3>
  12. </div>
  13. <div class="box-body">
  14. <div class="col-sm-12">
  15. <table class="table table-hover">
  16. <thead>
  17. <tr>
  18. <th>标识</th>
  19. <th>等待执行</th>
  20. <th>延时执行</th>
  21. <th>待重新执行</th>
  22. <th>已完成</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. <?php foreach ($data as $key => $datum){ ?>
  27. <tr>
  28. <td><?= $key ?></td>
  29. <td><?= explode(':', $datum[1])[1] ?? 0 ?></td>
  30. <td><?= explode(':', $datum[2])[1] ?? 0 ?></td>
  31. <td><?= explode(':', $datum[3])[1] ?? 0 ?></td>
  32. <td><?= explode(':', $datum[4])[1] ?? 0 ?></td>
  33. </tr>
  34. <?php } ?>
  35. </tbody>
  36. </table>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. <script>
  43. </script>
粤ICP备19079148号