Girls.php 456 Bytes
<?php

use Action\AbstractAction;
use LibModels\Wap\Home\IndexData as Index;
/**
 * 女生首页
 */
class GirlsController extends AbstractAction
{

    public function indexAction()
    {
    	// 频道数据
    	$channelData = Index::getUserChannelData(0, '2,3', '201504091403002');

    	echo '<pre>';
    	print_r($channelData);
    	
		$this->_view->assign('title', 'YOHO!有货');
    	$this->_view->display('girls', compact('channelData'));
    }
}