| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- {include file="../../../application/install/view/index/head" /}
- <style type="text/css">
- .layui-table {
- border: 1px solid #E6E7EB;
- }
- .layui-table td,
- .layui-table th {
- text-align: center;
- font-size: 14px;
- color: #4B5563;
- }
- .layui-table th {
- background: #E6E7EB;
- color: #1F2937;
- }
- .layui-table tbody tr.yes td:last-child::before {
- content: '';
- display: inline-block;
- width: 16px;
- vertical-align: middle;
- height: 16px;
- margin-right: 4px;
- background: url(__STATIC__/images/install/monitor_ic_check.png) 100% 100%;
- }
- .layui-table tbody tr.ok td:last-child::before {
- content: '';
- display: inline-block;
- width: 16px;
- height: 16px;
- vertical-align: middle;
- margin-right: 4px;
- background: url(__STATIC__/images/install/monitor_ic_check.png) 100% 100%;
- }
- .layui-table tbody tr.no td:last-child::before {
- content: '';
- display: inline-block;
- vertical-align: middle;
- width: 16px;
- height: 16px;
- margin-right: 4px;
- background: url(__STATIC__/images/install/monitor_ic_wrong.png) 100% 100%;
- }
- .install-box {
- width: 1400px;
- }
- .title-run {
- height: 28px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 20px;
- color: #1F2937;
- line-height: 28px;
- text-align: center;
- font-style: normal;
- }
- .word-box {
- display: flex;
- gap: 20px;
- }
- .step-btns .last {
- width: 300px;
- height: 40px;
- background: rgba(64, 204, 146, 0.2);
- border-radius: 6px;
- color: rgba(64, 204, 146, 1);
- }
- .step-btns .common {
- width: 300px;
- height: 40px;
- background: #FFFFFF;
- box-shadow: 0px 1px 3px 0px #EBEDF0;
- border-radius: 6px;
- border: 1px solid #E6E7EB;
- color: rgba(31, 41, 55, 1);
- }
- </style>
- <div class="install-box">
- <div class="title-run">
- {:lang('install/environment_title')}
- </div>
- <table class="layui-table" lay-skin="line">
- <thead>
- <tr>
- <th>{:lang('install/environment_name')}</th>
- <th>{:lang('install/required_config')}</th>
- <th>{:lang('install/current_config')}</th>
- </tr>
- </thead>
- <tbody>
- {volist name="data.env" id="vo"}
- <tr class="{$vo[4]}">
- <td>{$vo[0]}</td>
- <td>{$vo[2]}</td>
- <td>{$vo[3]}</td>
- </tr>
- {/volist}
- </tbody>
- </table>
- <div class="word-box">
- <table class="layui-table" lay-skin="line">
- <thead>
- <tr>
- <th>{:lang('install/func_ext')}</th>
- <th>{:lang('install/type')}</th>
- <th>{:lang('install/result')}</th>
- </tr>
- </thead>
- <tbody>
- {volist name="data.func" id="vo"}
- <tr class="{$vo[2]}">
- <td>{$vo[0]}</td>
- <td>{$vo[3]}</td>
- <td>{$vo[1]}</td>
- </tr>
- {/volist}
- </tbody>
- </table>
- <table class="layui-table" lay-skin="line">
- <thead>
- <tr>
- <th>{:lang('install/dir_file')}</th>
- <th>{:lang('install/required_popedom')}</th>
- <th>{:lang('install/current_popedom')}</th>
- </tr>
- </thead>
- <tbody>
- {volist name="data.dir" id="vo"}
- <tr class="{$vo[4]}">
- <td>{$vo[1]}</td>
- <td>{$vo[2]}</td>
- <td>{$vo[3]}</td>
- </tr>
- {/volist}
- </tbody>
- </table>
- </div>
- <div class="step-btns">
- <a href="?index" class="last layui-btn layui-btn-primary layui-btn-big fl">{:lang('install/back_step')}</a>
- <a href="?step=3" class="layui-btn layui-btn-big layui-btn-normal fl">{:lang('install/next_step')}</a>
- <a target="_blank" href="http://www.maccms.la/doc/v10/faq.html"
- class="layui-btn common fr">{:lang('install/question')}</a>
- </div>
- </div>
- {include file="../../../application/install/view/index/foot" /}
|