Home.php 5.75 KB
<?php

use Action\AbstractAction;
use home\GradeModel;
use Plugin\Helpers;

/**
 * 个人中心相关的控制器
 * 
 * @name HomeController
 * @package 
 * @copyright yoho.inc
 * @version 1.0 (2015-10-28 16:28:32)
 * @author fei.hong <fei.hong@yoho.cn>
 */
class HomeController extends AbstractAction
{
    /**
     * 个人中心入口
     */
    public function indexAction()
    {
	    // $uid = $this->getUid();
	    $uid = 967016;

	    $data = \Index\UserModel::getUserProfileData($uid);

	    // print_r($data);
	    $data['homeHeader'] = array(
	    	'myHomePage' => true,
	    	'searchUrl' => Helpers::url('/search', null, 'search')
	    );

        $data['recommendForYou'] = array(
        	'recommendList' => array(
        		array(
        			'img' => ''
        		),
        		array(
        			'img' => ''
        		),
        		array(
        			'img' => ''
        		),
        		array(
        			'img' => ''
        		),
        		array(
        			'img' => ''
        		)
        	)
        );
        $data['pageFooter'] = true;

        // 设置网站标题
        $this->setTitle('个人中心');

        $this->_view->display('index', $data);
    }

	/**
	 * 用户订单
	 */
	public function ordersAction()
	{
		// $uid = $this->getUid();
		// $type = $this->get('type', 1);

		// $orders = \Index\UserModel::getUserOrderData(967016, $type);

		$order = array(
			'orders' => array(
				array(
					'orderNum' => '408539077',
					'tradingStatus' => '交易成功',
					'goods' => array(
						array(
							'id' => 1,
							'thumb' => 'http://img11.static.yhbimg.com/goodsimg/2015/11/04/05/01ce2aff32fc3c90584f516167cd526d91.jpg?imageMogr2/thumbnail/235x314/extent/235x314/background/d2hpdGU=/position/center/quality/90',
							'name' => 'Adidas Originals ZX FLUXM22508',
							'color' => '黄',
							'size' => '43',
							'price' => '699.00',
							'count' => '2'
						),
						array(
							'id' => 1,
							'thumb' => 'http://img10.static.yhbimg.com/goodsimg/2015/11/04/05/0188f1aca49ac478a565ec029b5d2d4a6c.jpg?imageMogr2/thumbnail/235x314/extent/235x314/background/d2hpdGU=/position/center/quality/90',
							'name' => 'B.Duck浴室玩伴mini浮水鸭',
							'gift' => true,
							'color' => '黄',
							'size' => '43',
							'price' => '0.00',
							'count' => '1'
						)
					),
					'count' => 2,
					'sumCost' => '699.00',
					'unpaid' => true,
				)
			)
		);

		$this->_view->display('order', array('order' => $order, 'orderPage' => true));
		// print_r($orders);
	}

	/**
	 * 用户收藏的商品
	 */
	public function favoriteAction()
	{
		$uid = $this->getUid();

		$favProducts = \Index\UserModel::getFavProductData($uid);

		print_r($favProducts);
	}

	/**
	 * 用户收藏的品牌
	 */
	public function favoritebrandAction()
	{
		$uid = $this->getUid();
		$gender = Helpers::getGenderByCookie();

		$favBrands = \Index\UserModel::getFavBrandData($uid, $gender);

		print_r($favBrands);

	}

	/**
	 * 个人信息
	 */
	public function personalDetailsAction()
	{
		// $uid = $this->getUid();
		$uid = 967016;
	    $data = \Index\UserModel::getUserProfileData($uid);
	    $data['pageFooter'] = true;
        $this->_view->display('personal-details', $data);


	}

	/**
	 * YOHO币
	 */
	public function currencyAction()
	{
		// $uid = $this->getUid();

	    $uid = 967016;
		$favBrands = \Index\UserModel::getYohoCoinData($uid);

		print_r($favBrands);

		$this->_view->display('yoho-coin', array('yohoCoin' => array('coinNum' => 0)));
	}

	/**
	 * 优惠券
	 */
	public function couponsAction()
	{
		// $uid = $this->getUid();

	    $uid = 967016;
		$status = $this->get('status', 0);

		$coupons = \Index\UserModel::getCouponData($uid, $status);

        $this->_view->display('coupons', $coupons);

	}

	/**
	 * 地址管理
	 */
	public function addressAction()
	{
		$uid = $this->getUid();

		$address = \Index\UserModel::getAddressData($uid);

		print_r($address);
	}

	/**
	 * 我的逛
	 */
	public function myGuangAction()
	{
		echo 'My Guang';
	}

	/**
	 * 意见反馈
	 */
	public function suggestAction()
	{
		$udid = $this->getUdid();
		$page = $this->get('page', 1);
		$limit = $this->get('limit', 30);

		$suggest = \Index\UserModel::getSuggestData($udid, $page, $limit);

		print_r($suggest);
	}

	/**
	 * 异步保存意见反馈数据
	 */
	public function savesuggestAction()
	{
		if($this->isAjax()) {
			$uid = $this->getUid();
			$content = $this->post('content', '');
			$suggest_type = $this->get('suggest_type', 2);

			$result = \Index\UserModel::saveSuggestData($uid, $content, $suggest_type);

			$this->echoJson($result);
		}

	}
        
        /**
         * 会员等级展示页
         */
            public function gradeAction(){
                //设置网站seo信息
                $this->setTitle('会员等级');
                //显示网站导航头部信息
                $this->setNavHeader('会员等级');
                
                $gender = Helpers::getGenderByCookie();
                $channel = Helpers::getChannelByCookie();
                $uid = $this -> getUid();
                $uid = '10267443';//临时测试用
                $data = GradeModel::getGrade($gender,$channel,$uid);
                $this -> _view -> display('vip-grade',$data);
            }
        /*
        *会员特权查看页
         */
            public function preferentialAction(){
                //设置网站seo信息
                $this->setTitle('会员等级');
                //显示网站导航头部信息
                $this->setNavHeader('会员特权详情');
                
                $channel = Helpers::getChannelByCookie();
                $uid = $this -> getUid();               
                $data = GradeModel::getPreferential($channel,$uid);
                $this -> _view -> display('privilege',$data);
            }
    
}