| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | <?php/** * FecShop file. * * @link http://www.fecshop.com/ * @copyright Copyright (c) 2016 FecShop Software LLC * @license http://www.fecshop.com/license/ */use fec\helpers\CRequest;?><form id="pagerForm" method="post" action="<?= \fec\helpers\CUrl::getCurrentUrl();  ?>">	<?=  CRequest::getCsrfInputHtml();  ?>	<?=  $pagerForm;  ?>	</form><div class="pageHeader">	<form rel="pagerForm" onsubmit="return navTabSearch(this);" action="<?= \fec\helpers\CUrl::getCurrentUrl();  ?>" method="post">		<?php echo CRequest::getCsrfInputHtml();  ?>		<div class="searchBar">			<?php  echo $searchBar; ?>		</div>	</form></div><div class="pageContent">		<div class="panelBar" style="line-height:24px;padding-left:10px;color:#cc0000">		categores有以下几种 :appCustom,appApi,appAdmin,使用示例:\Yii::info('log text','appCustom');  <br/>			</div>	<div class="panelBar">		<?= $toolBar; ?>	</div>	<table class="list" width="100%" layoutH="138">		<?= $thead; ?>		<tbody>			<?= $tbody; ?>		</tbody>	</table>	</div>
 |