| 12345678910111213141516171819202122232425262728293031323334353637383940 | <?php/** * FecShop file. * * @link http://www.fecshop.com/ * @copyright Copyright (c) 2016 FecShop Software LLC * @license http://www.fecshop.com/license/ */namespace fecadmin\controllers;use Yii;use yii\helpers\Url;use fecadmin\FecadminbaseController;/** * @author Terry Zhao <2358269014@qq.com> * @since 1.0 */class MyaccountController extends FecadminbaseController{	# 我的账户    public function actionIndex()    {		$data = $this->getBlock()->getLastData();		return $this->render($this->action->id,$data);	}			}
 |