index.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. use common\helpers\Html;
  3. $this->title = '协议管理';
  4. ?>
  5. <div class="row">
  6. <div class="col-12 col-xs-12">
  7. <div class="box">
  8. <div class="box-header">
  9. <h3 class="box-title"><?= $this->title; ?></h3>
  10. </div>
  11. <!-- /.box-header -->
  12. <div class="box-body table-responsive">
  13. <table class="table table-hover">
  14. <thead>
  15. <tr>
  16. <th>协议名称</th>
  17. <th>标识</th>
  18. <th class="action-column">操作</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. <?php foreach ($protocolNameMap as $key => $item) {?>
  23. <tr>
  24. <td>《<?= $item; ?>》</td>
  25. <td><?= $key; ?></td>
  26. <td><?= Html::linkButton(['edit', 'name' => $key], '编辑')?></td>
  27. </tr>
  28. <?php } ?>
  29. </tbody>
  30. </table>
  31. <!-- /.box-body -->
  32. </div>
  33. <!-- /.box -->
  34. </div>
  35. </div>
  36. </div>
粤ICP备19079148号