Lifestyle.php 1.18 KB
<?php

use Action\AbstractAction;
<<<<<<< HEAD
use LibModels\Wap\Home\IndexData as Index;
=======
use LibModels\Wap\Home\IndexData;
use Plugin\FloorProcess;

>>>>>>> 3ceb824c00a2188f954835e78b5e4222bf3c78f8
/**
 * 创意生活首页
 */
class kidsController extends AbstractAction
{

    public function indexAction()
    {
 
        // 显示侧边栏
        $this->setNavSide();

        // 显示顶部下载
        $this->setHeaderDownload();
        // 设置顶部信息(搜索)
        $this->setHomeChannelHeader();

        $data = array(
            'sideNav' => array(),
            'content' => array()
        );

        $sideDatas = IndexData::getHomeChannels();
        if($sideDatas['code'] == 200)
        {
            $data['sideNav'] = $sideDatas['data'];
        }

        // 频道数据
        $channelData = IndexData::getUserChannelData(0, '1,3', '9aa25f5133f011ec96c2045eb15ae425');
        $channels = array();
        if($channelData['code'] == 200)
        {
            $data['content'] = FloorProcess::getContent($channelData['data'], 4);
        }

        $this->_view->assign('title', 'YOHO!有货');
        $this->_view->display('index', $data);
    
 
    }
}