72 lines
4.3 KiB
PHP
72 lines
4.3 KiB
PHP
<!-- 植物-->
|
|
<?php
|
|
use common\utils\EnumUtil;
|
|
|
|
?>
|
|
|
|
<section class="content-header">
|
|
</section>
|
|
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<h3 class="box-title">植物</h3>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
<div class="box-body">
|
|
<div id="example2_wrapper" class="dataTables_wrapper form-inline dt-bootstrap">
|
|
<div class="row">
|
|
<div class="col-sm-6"></div>
|
|
<div class="col-sm-6"></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<table id="example2" class="table table-bordered table-hover dataTable" role="grid" aria-describedby="example2_info">
|
|
<thead>
|
|
<tr role="row">
|
|
<th class="sorting_asc" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-sort="ascending"
|
|
aria-label="Rendering engine: activate to sort column descending">ID
|
|
</th>
|
|
<th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="Platform(s): activate to sort column ascending">名称</th>
|
|
<th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending">幼苗期时间(秒)</th>
|
|
<th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending">生长期时间(秒)</th>
|
|
<th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending">成熟期时间(秒)</th>
|
|
<th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending">果实ID</th>
|
|
<th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending">果实基本产量(个)</th>
|
|
<th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending">神秘种子相对随机几率(百分比)</th>
|
|
<!-- <th class="sorting" tabindex="0" aria-controls="example2" rowspan="1" colspan="1" aria-label="CSS grade: activate to sort column ascending">土地类型等级限制</th>-->
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php foreach ($list as $item): ?>
|
|
<tr role="row">
|
|
<td><?= $item['id'] ?></td>
|
|
<td><?= $item['name'] ?></td>
|
|
<td><?= $item['seedling_time'] ?></td>
|
|
<td><?= $item['grow_time'] ?></td>
|
|
<td><?= $item['ripe_time'] ?></td>
|
|
<td><?= $item['item_id'] ?></td>
|
|
<td><?= $item['output'] ?></td>
|
|
<td><?= isset($item['odds'])? $item['odds']:0 ?></td>
|
|
<!-- <td>--><?//= $item['player_level'] ?><!--</td>-->
|
|
<td>
|
|
<a href="<?= \yii\helpers\Url::to(['config/crop-get', 'id' => $item['id']]) ?>"><i class="fa fa-edit"></i></a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-5">
|
|
<div class="dataTables_info" id="example2_info" role="status" aria-live="polite"><?= sprintf('总共%d条数据', count($list)); ?></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
</div>
|
|
</section>
|