Sale1.php 2.26 KB
<?php
// 前端开发添加的路由,对应需求 http://redmine.yoho.cn/issues/143, 后端开发完删除
// 首页 毕凯,赵彪
// 列表页 王成龙
use Action\WebAction;
use Plugin\Helpers;

class Sale1Controller extends WebAction
{
    public function indexAction()
    {
        $data = array(
            'saleIndexPage' => true,
            'topBanner' => array(
                'list' => array(
                    array(
                        'href' => 'http://www.yohobuy.com',
                        'img' => 'http://img11.static.yhbimg.com/yhb-img01/2015/12/23/03/01cd0659953f9f213213839c971406413c.jpg?imageView/1/w/1150/h/450'
                    ),
                    array(
                        'href' => 'http://www.yohobuy.com',
                        'img' => 'http://img11.static.yhbimg.com/yhb-img01/2015/12/23/03/01c571ce38e5d6cf5a0077bd11593bbdfe.jpg?imageView/1/w/1150/h/450'
                    ),
                    array(
                        'href' => 'http://www.yohobuy.com',
                        'img' => 'http://img11.static.yhbimg.com/yhb-img01/2015/12/23/03/01cd0659953f9f213213839c971406413c.jpg?imageView/1/w/1150/h/450'
                    ),
                    array(
                        'href' => 'http://www.yohobuy.com',
                        'img' => 'http://img11.static.yhbimg.com/yhb-img01/2015/12/23/03/01c571ce38e5d6cf5a0077bd11593bbdfe.jpg?imageView/1/w/1150/h/450'
                    )
                )
            ),
            'activityEnter' => array(
                array(
                    'icon' => '',
                    'title' => 'VIP会员专享',
                    'desc' => 'Only for VIP',
                    'link' => 'http://www.yohobuy.com'
                ),
                array(
                    'icon' => '',
                    'title' => '断码区',
                    'desc' => 'Discount',
                    'link' => 'http://www.yohobuy.com'
                ),
                array(
                    'icon' => '',
                    'title' => '最新降价',
                    'desc' => 'Off Price',
                    'link' => 'http://www.yohobuy.com'
                )
            )
        );
        $this->setWebNavHeader();
        $this->_view->display('index', $data);
    }
}