* Fix bug#11528.

This commit is contained in:
leiyong
2021-04-01 08:32:26 +03:00
parent 8606de7f22
commit 4075817079
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ class personnel extends control
$this->view->title = $this->lang->personnel->invest;
$this->view->position[] = $this->lang->personnel->invest;
$this->view->invest = $this->personnel->getInvest($programID);
$this->view->investList = $this->personnel->getInvest($programID);
$this->display();
}
+2 -2
View File
@@ -15,7 +15,7 @@
.table.has-sort-head thead>tr>th {padding-right: 8px;}
</style>
<div id="mainContent" class="main-row fade">
<?php if(!empty($inputPersonnel)):?>
<?php if(!empty($investList)):?>
<div class="main-col">
<form class="main-table table-product" data-ride="table" method="post" action="">
<table class="table has-sort-head table-fixed table-bordered text-center">
@@ -56,7 +56,7 @@
</tr>
</thead>
<tbody class="sortable">
<?php foreach($invest as $personnel):?>
<?php foreach($investList as $personnel):?>
<tr>
<td title='<?php echo $personnel['realname'];?>'><?php echo $personnel['realname'];?></td>
<td title='<?php echo $personnel['role'];?>'><?php echo $personnel['role'];?></td>