* Modify bottom refresh.

This commit is contained in:
tianshujie98
2020-09-01 17:48:12 +08:00
parent ab578b96b1
commit a6029d430f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ class design extends control
/* Init pager and get designs. */
$this->app->loadClass('pager', $static = true);
$pager = pager::init($recTotal, $recPerPage, $pageID);
$pager = pager::init(0, $recPerPage, $pageID);
$designs = $this->design->getList($this->session->program, $productID, $type, $queryID, $orderBy, $pager);
$this->view->title = $this->lang->design->common . $this->lang->colon . $this->lang->design->browse;
@@ -324,7 +324,7 @@ class design extends control
{
/* Init pager. */
$this->app->loadClass('pager', $static = true);
$pager = pager::init($recTotal, $recPerPage, $pageID);
$pager = pager::init(0, $recPerPage, $pageID);
$this->view->title = $this->lang->design->common . $this->lang->colon . $this->lang->design->submission;
$this->view->position[] = $this->lang->design->submission;
+1 -1
View File
@@ -72,7 +72,7 @@
<?php endforeach;?>
</tbody>
</table>
<div class='table-footer table-statistic''>
<div class='table-footer table-statistic'>
<?php $pager->show('right', 'pagerjs');?>
</div>
</form>