step2.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {extend name="layout" /}
  2. {block name="progress"}
  3. <div class="progress active progress-mini">
  4. <div class="progress-bar progress-bar-info progress-bar-striped" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"></div>
  5. </div>
  6. {/block}
  7. {block name="content"}
  8. <div class="box-content step2">
  9. <div class="title">
  10. <img src="{$static_dir}install/img/title1.png" alt="">
  11. </div>
  12. <div class="option">运行环境</div>
  13. <table class="table table-borderless">
  14. <thead>
  15. <tr>
  16. <th style="width: 30%;">项目</th>
  17. <th style="width: 30%;">所需配置</th>
  18. <th style="width: 40%;">当前配置</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. {volist name="env" id="item"}
  23. <tr>
  24. <td>{$item[0]}</td>
  25. <td>{$item[1]}</td>
  26. <td>
  27. <i class="fa fa-{$item[4]}"></i> {$item[3]}
  28. </td>
  29. </tr>
  30. {/volist}
  31. </tbody>
  32. </table>
  33. <div class="option">目录/文件权限</div>
  34. <table class="table table-borderless">
  35. <thead>
  36. <tr>
  37. <th style="width: 30%;">目录/文件</th>
  38. <th style="width: 30%;">所需状态</th>
  39. <th style="width: 40%;">当前状态</th>
  40. </tr>
  41. </thead>
  42. <tbody>
  43. {volist name="dirfile" id="item"}
  44. <tr>
  45. <td>{$item[3]}</td>
  46. <td>可写</td>
  47. <td>
  48. <i class="fa fa-{$item[2]}"></i> {$item[1]}
  49. </td>
  50. </tr>
  51. {/volist}
  52. </tbody>
  53. </table>
  54. <div class="option">函数及扩展依赖性</div>
  55. <table class="table table-borderless">
  56. <thead>
  57. <tr>
  58. <th style="width: 30%;">名称</th>
  59. <th style="width: 30%;">类型</th>
  60. <th style="width: 40%;">检查结果</th>
  61. </tr>
  62. </thead>
  63. <tbody>
  64. {volist name="func" id="item"}
  65. <tr>
  66. <td>{$item[0]}</td>
  67. <td>{$item[3]}</td>
  68. <td>
  69. <i class="fa fa-{$item[2]}"></i> {$item[1]}
  70. </td>
  71. </tr>
  72. {/volist}
  73. </tbody>
  74. </table>
  75. <div class="button">
  76. <a href="{$Request.baseFile}" class="btn btn-minw btn-default">上一步</a>
  77. <a href="{$Request.baseFile}?s=/index/step3.html" class="btn btn-minw btn-default ajax-get">下一步</a>
  78. </div>
  79. </div>
  80. {/block}