...
|
...
|
@@ -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);
|
...
|
...
|
|