...
|
...
|
@@ -211,12 +211,14 @@ class DetailModel |
|
|
// 悬浮的购物车信息
|
|
|
$result['cartInfo'] = array(
|
|
|
'cartUrl' => Helpers::url('/cart/index/index', null), // 购物车链接
|
|
|
'addToCartUrl' => Helpers::url('/product/buy_' . $productId . '_' . $goodsId . '.html'), // 加入购物车链接
|
|
|
'numInCart' => 0,
|
|
|
'goodsInstore' => $baseInfo['storage'], // 库存量
|
|
|
'soldOut' => $baseInfo['storage'] == 0, // 已售磬
|
|
|
'notForSale' => $baseInfo['attribute'] == 2, // 非卖品
|
|
|
);
|
|
|
if (!$result['cartInfo']['soldOut'] && !$result['cartInfo']['notForSale']) {
|
|
|
$result['cartInfo']['addToCartUrl'] = Helpers::url('/product/buy_' . $productId . '_' . $goodsId . '.html'); // 加入购物车链接
|
|
|
}
|
|
|
|
|
|
// 是否收藏
|
|
|
$result['isCollect'] = false;
|
...
|
...
|
|