Merge branch 'sprint/167_xiawenlong' into 'sprint/167'

Sprint/167 xiawenlong

See merge request easycorp/zentaopms!109
This commit is contained in:
朱金勇
2021-10-19 10:18:18 +00:00
16 changed files with 167 additions and 92 deletions
+9 -1
View File
@@ -19,6 +19,13 @@
<?php common::printLink('api', 'createStruct', "libID=$libID", "<i class='icon icon-plus'></i> " . $lang->api->createStruct, '', "class='btn btn-primary create-user-btn'");?>
</div>
</div>
<?php if(empty($structs)):?>
<div class="table-empty-tip">
<p>
<span class="text-muted"><?php echo $lang->api->noStruct;?></span>
</p>
</div>
<?php else:?>
<form class='main-table table-user' data-ride='table' method='post' data-checkable='false' id='userListForm'>
<table class='table has-sort-head' id='userList'>
<thead>
@@ -38,7 +45,7 @@
<td><?php printf('%03d', $struct->id);?></td>
<td><?php echo $struct->type;?></td>
<td><?php echo $struct->name;?></td>
<td><?php echo $struct->addedBy;?></td>
<td><?php echo $struct->addedName;?></td>
<td class="c-date"><?php echo $struct->addedDate;?></td>
<td class='c-actions'>
<?php
@@ -51,6 +58,7 @@
</tbody>
</table>
</form>
<?php endif;?>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>