Authored by Rock Zhang

去除订单结算中选择地址、选择优惠券页面以及品牌一览页面右上角的导航菜单

Code Review By Rock Zhang
... ... @@ -375,7 +375,7 @@ class IndexController extends AbstractAction
// 设置网站标题
$this->setTitle('选择地址');
$this->setNavHeader('选择地址', Helpers::url('/cart/index/orderEnsure'));
$this->setNavHeader('选择地址', Helpers::url('/cart/index/orderEnsure'), false);
$uid = $this->getUid(true);
$address = UserModel::getAddressData($uid);
... ... @@ -397,7 +397,7 @@ class IndexController extends AbstractAction
// 设置网站标题
$this->setTitle('选择优惠券');
$this->setNavHeader('选择优惠券', Helpers::url('/cart/index/orderEnsure'));
$this->setNavHeader('选择优惠券', Helpers::url('/cart/index/orderEnsure'), false);
$this->_view->display('select-coupon', array(
'selectCouponPage' => true,
... ... @@ -410,8 +410,6 @@ class IndexController extends AbstractAction
*/
public function orderSubAction()
{
$result = array();
if ($this->isAjax()) {
$uid = $this->getUid(true);
$addressId = $this->post('addressId', null);
... ...
... ... @@ -18,7 +18,7 @@ class BrandController extends AbstractAction
public function indexAction()
{
$this->setTitle('品牌一览');
$this->setNavHeader('品牌一览', '/boys?go=1&t=' . time());
$this->setNavHeader('品牌一览', '/boys?go=1&t=' . time(), false);
/* 判断参数是否有效 */
$channel = null;
... ...