...
|
...
|
@@ -18,10 +18,13 @@ class CartModel |
|
|
{
|
|
|
|
|
|
/**
|
|
|
* 获取购物车数据
|
|
|
*
|
|
|
* @param string $shoppingKey 客户端标识
|
|
|
* @param integer $uid 用户ID
|
|
|
* @return array|mixed 处理之后的购物车数据
|
|
|
* @return array | mixed 处理之后的购物车数据
|
|
|
*/
|
|
|
public static function getCartData($uid)
|
|
|
public static function getCartData($shoppingKey, $uid)
|
|
|
{
|
|
|
$result = array(
|
|
|
'cartNav' => true,
|
...
|
...
|
|