view.php 728 B

12345678910111213141516171819202122232425
  1. <?php
  2. use common\helpers\Html;
  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. <table class="table">
  10. <tbody>
  11. <tr>
  12. <td style="min-width: 100px">具体信息</td>
  13. <td style="max-width: 700px">
  14. <?php $model['error_data'] ? Yii::$app->services->base->p(Html::encode($model['error_data'])) : '' ?>
  15. </td>
  16. </tr>
  17. </tbody>
  18. </table>
  19. </div>
  20. <div class="modal-footer">
  21. <button type="button" class="btn btn-white" data-dismiss="modal">关闭</button>
  22. </div>
粤ICP备19079148号