step2.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. {include file="../../../application/install/view/index/head" /}
  2. <style type="text/css">
  3. .layui-table {
  4. border: 1px solid #E6E7EB;
  5. }
  6. .layui-table td,
  7. .layui-table th {
  8. text-align: center;
  9. font-size: 14px;
  10. color: #4B5563;
  11. }
  12. .layui-table th {
  13. background: #E6E7EB;
  14. color: #1F2937;
  15. }
  16. .layui-table tbody tr.yes td:last-child::before {
  17. content: '';
  18. display: inline-block;
  19. width: 16px;
  20. vertical-align: middle;
  21. height: 16px;
  22. margin-right: 4px;
  23. background: url(__STATIC__/images/install/monitor_ic_check.png) 100% 100%;
  24. }
  25. .layui-table tbody tr.ok td:last-child::before {
  26. content: '';
  27. display: inline-block;
  28. width: 16px;
  29. height: 16px;
  30. vertical-align: middle;
  31. margin-right: 4px;
  32. background: url(__STATIC__/images/install/monitor_ic_check.png) 100% 100%;
  33. }
  34. .layui-table tbody tr.no td:last-child::before {
  35. content: '';
  36. display: inline-block;
  37. vertical-align: middle;
  38. width: 16px;
  39. height: 16px;
  40. margin-right: 4px;
  41. background: url(__STATIC__/images/install/monitor_ic_wrong.png) 100% 100%;
  42. }
  43. .install-box {
  44. width: 1400px;
  45. }
  46. .title-run {
  47. height: 28px;
  48. font-family: PingFangSC, PingFang SC;
  49. font-weight: 500;
  50. font-size: 20px;
  51. color: #1F2937;
  52. line-height: 28px;
  53. text-align: center;
  54. font-style: normal;
  55. }
  56. .word-box {
  57. display: flex;
  58. gap: 20px;
  59. }
  60. .step-btns .last {
  61. width: 300px;
  62. height: 40px;
  63. background: rgba(64, 204, 146, 0.2);
  64. border-radius: 6px;
  65. color: rgba(64, 204, 146, 1);
  66. }
  67. .step-btns .common {
  68. width: 300px;
  69. height: 40px;
  70. background: #FFFFFF;
  71. box-shadow: 0px 1px 3px 0px #EBEDF0;
  72. border-radius: 6px;
  73. border: 1px solid #E6E7EB;
  74. color: rgba(31, 41, 55, 1);
  75. }
  76. </style>
  77. <div class="install-box">
  78. <div class="title-run">
  79. {:lang('install/environment_title')}
  80. </div>
  81. <table class="layui-table" lay-skin="line">
  82. <thead>
  83. <tr>
  84. <th>{:lang('install/environment_name')}</th>
  85. <th>{:lang('install/required_config')}</th>
  86. <th>{:lang('install/current_config')}</th>
  87. </tr>
  88. </thead>
  89. <tbody>
  90. {volist name="data.env" id="vo"}
  91. <tr class="{$vo[4]}">
  92. <td>{$vo[0]}</td>
  93. <td>{$vo[2]}</td>
  94. <td>{$vo[3]}</td>
  95. </tr>
  96. {/volist}
  97. </tbody>
  98. </table>
  99. <div class="word-box">
  100. <table class="layui-table" lay-skin="line">
  101. <thead>
  102. <tr>
  103. <th>{:lang('install/func_ext')}</th>
  104. <th>{:lang('install/type')}</th>
  105. <th>{:lang('install/result')}</th>
  106. </tr>
  107. </thead>
  108. <tbody>
  109. {volist name="data.func" id="vo"}
  110. <tr class="{$vo[2]}">
  111. <td>{$vo[0]}</td>
  112. <td>{$vo[3]}</td>
  113. <td>{$vo[1]}</td>
  114. </tr>
  115. {/volist}
  116. </tbody>
  117. </table>
  118. <table class="layui-table" lay-skin="line">
  119. <thead>
  120. <tr>
  121. <th>{:lang('install/dir_file')}</th>
  122. <th>{:lang('install/required_popedom')}</th>
  123. <th>{:lang('install/current_popedom')}</th>
  124. </tr>
  125. </thead>
  126. <tbody>
  127. {volist name="data.dir" id="vo"}
  128. <tr class="{$vo[4]}">
  129. <td>{$vo[1]}</td>
  130. <td>{$vo[2]}</td>
  131. <td>{$vo[3]}</td>
  132. </tr>
  133. {/volist}
  134. </tbody>
  135. </table>
  136. </div>
  137. <div class="step-btns">
  138. <a href="?index" class="last layui-btn layui-btn-primary layui-btn-big fl">{:lang('install/back_step')}</a>
  139. <a href="?step=3" class="layui-btn layui-btn-big layui-btn-normal fl">{:lang('install/next_step')}</a>
  140. <a target="_blank" href="http://www.maccms.la/doc/v10/faq.html"
  141. class="layui-btn common fr">{:lang('install/question')}</a>
  142. </div>
  143. </div>
  144. {include file="../../../application/install/view/index/foot" /}