|
|
<?php
|
|
|
|
|
|
use Action\WebAction;
|
|
|
use LibModels\Web\Product\SaleData;
|
|
|
|
|
|
/**
|
|
|
* sale页
|
|
|
*
|
|
|
*/
|
|
|
class SaleController extends WebAction
|
|
|
{
|
|
|
|
|
|
public function indexAction()
|
|
|
{
|
|
|
//获取专区ID
|
|
|
$specialsaleId = $this->Param('specialsaleId');
|
|
|
$specialsaleId = 1; //测试数据
|
|
|
$specialInfo = SaleData::getSpecial($specialsaleId);
|
|
|
$special = $specialInfo['data'];
|
|
|
// if (empty($specialsale_id)) {
|
|
|
// $specialsale_id = str_replace('specialsale', '', explode('.', $_SERVER['HTTP_HOST'])[0]);
|
|
|
// }
|
|
|
//获取促销ID
|
|
|
$promotion = $this->Param('promotion');
|
|
|
|
|
|
//专区ID和促销ID都为空时,跳转到主页
|
|
|
if (empty($specialsaleId) && empty($promotion)) {
|
|
|
$this->go(SITE_MAIN);
|
|
|
}
|
|
|
|
|
|
/* 过滤请求参数 */
|
|
|
$condition = array();
|
|
|
$condition = filter_input_array(INPUT_GET, array(
|
|
|
//'query' => FILTER_SANITIZE_STRING,
|
|
|
'sort' => FILTER_VALIDATE_INT,
|
|
|
'msort' => FILTER_VALIDATE_INT,
|
|
|
'misort' => FILTER_VALIDATE_INT,
|
|
|
'color' => FILTER_VALIDATE_INT,
|
|
|
'size' => FILTER_VALIDATE_INT,
|
|
|
'style' => FILTER_DEFAULT,
|
|
|
'price' => FILTER_DEFAULT,
|
|
|
'gender' => FILTER_DEFAULT,
|
|
|
'p_d' => FILTER_DEFAULT,
|
|
|
'shelve_time' => FILTER_DEFAULT,
|
|
|
'isNew' => FILTER_DEFAULT,
|
|
|
'specialoffer' => FILTER_DEFAULT,
|
|
|
'limited' => FILTER_DEFAULT,
|
|
|
'order' => FILTER_DEFAULT,
|
|
|
'viewNum' => FILTER_VALIDATE_INT,
|
|
|
'rowNum' => FILTER_VALIDATE_INT,
|
|
|
'page' => FILTER_VALIDATE_INT,), false);
|
|
|
|
|
|
//字符转码
|
|
|
if (!empty($condition)) {
|
|
|
foreach ($condition as &$value) {
|
|
|
$value = rawurldecode($value);
|
|
|
}
|
|
|
}
|
|
|
//传品牌ID参数
|
|
|
if(!empty($special['brand_id'])){
|
|
|
$condition['brand'] = $special['brand_id'];
|
|
|
}
|
|
|
|
|
|
//传促销id
|
|
|
if(!empty($special['ispromotion'])){
|
|
|
//$condition['promotion'] = $special['ispromotion'];
|
|
|
}
|
|
|
|
|
|
//获取性别数据
|
|
|
$gender = $this->get('gender') ? ($this->get('gender') == '2,3' ? 2 : 1) : (!isset($_COOKIE['_Gender']) ? '3' : ($_COOKIE['_Gender'] == '2,3' ? 2 : 1));
|
|
|
$condition['gender'] = $gender;
|
|
|
|
|
|
//每页显示商品数
|
|
|
if (!isset($condition['viewNum']) || empty($condition['viewNum'])) {
|
|
|
$condition['viewNum'] = 59;
|
|
|
}
|
|
|
$view_num_arr = array(60, 100, 200);
|
|
|
if (!in_array($condition['viewNum'], $view_num_arr)) {
|
|
|
$condition['viewNum'] = 59;
|
|
|
}
|
|
|
//每行显示的商品数量
|
|
|
if (!isset($condition['rowNum']) || empty($condition['rowNum'])) {
|
|
|
$condition['rowNum'] = 5;
|
|
|
}
|
|
|
if ($condition['rowNum'] == 6) {
|
|
|
$imgSize = array(195, 260);
|
|
|
$minImgSize = array(50, 67);
|
|
|
} else {
|
|
|
$condition['rowNum'] = 5;
|
|
|
$imgSize = array(235, 314);
|
|
|
$minImgSize = array(60, 80);
|
|
|
}
|
|
|
//搜索词
|
|
|
//$query = $this->get('query');
|
|
|
$condition['needFilter'] = 1;
|
|
|
$options = array(
|
|
|
'imgSize' => $imgSize,
|
|
|
'minImgSize' => $minImgSize,
|
|
|
'gender' => $gender,
|
|
|
'needPd' => 'Y',
|
|
|
'rowNum' => $condition['rowNum'],
|
|
|
'viewNum' => $condition['viewNum'] - 1,
|
|
|
'specialsale_id' => 'Y'
|
|
|
);
|
|
|
|
|
|
$params = $condition + $_GET;
|
|
|
$params['attribute_not'] = 2;
|
|
|
$params = array_filter($params);
|
|
|
|
|
|
$data = Product\SaleModel::getSaleSearchData($params, $options, $specialInfo);
|
|
|
|
|
|
$cate = array('boys', 'girls', 'kids', 'lifestyle');
|
|
|
$this->setWebNavHeader($cate[$gender - 1]);
|
|
|
//渲染模板
|
|
|
$this->_view->display('new-sale', $data);
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|