Authored by 周少峰

students price

... ... @@ -245,6 +245,7 @@ class SearchModel
'filter_poolId' => FILTER_DEFAULT,
'showTag' => FILTER_DEFAULT,
'tagNew' => FILTER_DEFAULT,
'students' => FILTER_DEFAULT,
'tagSale' => FILTER_DEFAULT), false);
... ... @@ -312,11 +313,6 @@ class SearchModel
$condition['filter_poolId'] = rawurldecode($condition['filter_poolId']);
}
// 是否显示学生价
if (isset($condition['students'])) {
$data['students'] = true;
}
// 转换排序方式
// $type = $this->get('type', '');
// $order = $this->get('order', 0);
... ... @@ -383,6 +379,11 @@ class SearchModel
}
}
// 是否显示学生价
if (isset($condition['students'])) {
$data['students'] = true;
}
return $data;
}
... ...