|
@@ -30,43 +30,45 @@
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
- <table class="table tb-type2 nobdb" style="min-width:1400px">
|
|
|
+ <table class="table tb-type2 nobdb" style="min-width:100%">
|
|
|
<thead>
|
|
|
<tr class="thead">
|
|
|
- <th class="align-center">服务器ip</th>
|
|
|
- <th class="align-left">更新时间</th>
|
|
|
- <th class="align-left">mnt目录</th>
|
|
|
- <th class="align-left">data目录</th>
|
|
|
- <th class="align-left">日志</th>
|
|
|
- <th class="align-left">stdata</th>
|
|
|
- <th class="align-left">data/mysqlundo</th>
|
|
|
- <th class="align-left">mysql/xyzshop</th>
|
|
|
+ <th class="align-left">ip</th>
|
|
|
+ <th class="align-center">类型</th>
|
|
|
+ <th class="align-center" style="width: 15%">更新时间</th>
|
|
|
+ <th class="align-center">/mnt</th>
|
|
|
+ <th class="align-center">/data</th>
|
|
|
+ <th class="align-center">logs</th>
|
|
|
+ <th class="align-center">/stdata</th>
|
|
|
+ <th class="align-center">data/mysqlundo</th>
|
|
|
+ <th class="align-center">mysql/xyzshop</th>
|
|
|
</thead>
|
|
|
<tbody id="tbody">
|
|
|
<?php if (count($output['data']) > 0) { ?>
|
|
|
<?php
|
|
|
foreach ($output['data'] as $key => $value) { ?>
|
|
|
<tr class="hover trFlex">
|
|
|
- <td class="align-center"><span style=" font-size: 16px"><?php echo $key; ?></span></td>
|
|
|
- <td class="align-left">
|
|
|
+ <td class="align-left"><span style=" font-size: 16px"><?php echo $key; ?></span></td>
|
|
|
+ <td class="align-center"><span style=" font-size: 16px"><?php echo $value['server_name']; ?></span></td>
|
|
|
+ <td class="align-right">
|
|
|
<span style=" font-size: 16px"><?php echo $value['cur_time'] ?? ''; ?></span>
|
|
|
</td>
|
|
|
- <td class="align-left">
|
|
|
- <span style=" font-size: 16px"><?php echo $value['dev/vdb1'] ?? ''; ?></span>
|
|
|
+ <td class="align-center">
|
|
|
+ <span style="font-size: 16px"><?php echo $value['dev/vdb1'] ?? ''; ?></span>
|
|
|
</td>
|
|
|
- <td class="align-left">
|
|
|
+ <td class="align-center">
|
|
|
<span style=" font-size: 16px"><?php echo $value['dev/vdc1'] ?? ''; ?></span>
|
|
|
</td>
|
|
|
- <td class="align-left">
|
|
|
+ <td class="align-center">
|
|
|
<span style=" font-size: 16px"><?php echo $value['mnt/shoplog'] ?? ''; ?></span>
|
|
|
</td>
|
|
|
- <td class="align-left">
|
|
|
+ <td class="align-center">
|
|
|
<span style=" font-size: 16px"><?php echo $value['mnt/stdata'] ?? ''; ?></span>
|
|
|
</td>
|
|
|
- <td class="align-left">
|
|
|
+ <td class="align-center">
|
|
|
<span style=" font-size: 16px"><?php echo $value['data/mysqlundo'] ?? ''; ?></span>
|
|
|
</td>
|
|
|
- <td class="align-left">
|
|
|
+ <td class="align-center">
|
|
|
<span style=" font-size: 16px"><?php echo $value['mnt/mysql/xyzshop'] ?? ''; ?></span>
|
|
|
</td>
|
|
|
</tr>
|