data_request['id']) ? (empty($this->data_request['goods_id']) ? 0 : intval($this->data_request['goods_id'])) : intval($this->data_request['id']); if(empty($goods_id)) { $ret = DataReturn(MyLang('params_error_tips'), -1); } else { // 是否独立手机端详情 $is_use_mobile_detail = intval(MyC('common_app_is_use_mobile_detail', 0, true)); // 获取商品 $params = [ 'where' => [ ['id', '=', $goods_id], ['is_delete_time', '=', 0], ], 'is_content_app' => $is_use_mobile_detail, 'is_spec' => 1, 'is_params' => 1, 'is_favor' => 1, ]; $ret = GoodsService::GoodsList($params); if(empty($ret['data'][0]) || $ret['data'][0]['is_delete_time'] != 0) { $ret = DataReturn(MyLang('goods_no_exist_or_delete_error_tips'), -1); } else { // 商品信息 $goods = $ret['data'][0]; // 商品详情处理 if($is_use_mobile_detail == 1) { unset($goods['content_web']); } // 展示商品评分 if(MyC('common_is_goods_detail_show_comments', 0) == 1) { // 商品评价总数 $goods['comments_count'] = GoodsCommentsService::GoodsCommentsTotal(['goods_id'=>$goods_id, 'is_show'=>1]); // 评分 $goods['comments_score'] = GoodsCommentsService::GoodsCommentsScore($goods_id); // 最新3条评价 $goods['comments_data'] = GoodsCommentsService::GoodsFirstSeveralComments($goods_id); } // 商品访问统计 GoodsService::GoodsAccessCountInc(['goods_id'=>$goods_id]); // 用户商品浏览 GoodsBrowseService::GoodsBrowseSave(['goods_id'=>$goods_id, 'user'=>$this->user]); // 商品所属分类名称 $category = GoodsCategoryService::GoodsCategoryNames($goods_id); $goods['category_names'] = $category['data']; // 中间tabs导航 $middle_tabs_nav = GoodsService::GoodsDetailMiddleTabsNavList($goods); // 导航更多列表 $nav_more_list = AppService::GoodsNavMoreList(['data'=>$goods, 'page'=>'goods']); // 商品底部导航左侧小导航 $buy_left_nav = GoodsService::GoodsBuyLeftNavList($goods); // 商品购买按钮列表 $buy_button = GoodsService::GoodsBuyButtonList($goods); // 猜你喜欢 $guess_you_like = GoodsService::GoodsDetailGuessYouLikeData($goods['id']); // 数据返回 $result = [ 'goods' => $goods, 'cart_total' => GoodsCartService::UserGoodsCartTotal(['user'=>$this->user]), 'buy_left_nav' => $buy_left_nav, 'buy_button' => $buy_button, 'middle_tabs_nav' => $middle_tabs_nav['nav'], 'nav_more_list' => $nav_more_list, 'guess_you_like' => $guess_you_like, ]; $ret = SystemBaseService::DataReturn($result); } } return ApiService::ApiDataReturn($ret); } /** * 用户商品收藏 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-07-17 * @desc description */ public function Favor() { // 登录校验 $this->IsLogin(); // 开始操作 $params = $this->data_request; $params['user'] = $this->user; return ApiService::ApiDataReturn(GoodsFavorService::GoodsFavorCancel($params)); } /** * 商品规格类型 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-12-14 * @desc description */ public function SpecType() { // 开始处理 $params = $this->data_request; $ret = GoodsService::GoodsSpecType($params); return ApiService::ApiDataReturn($ret); } /** * 商品规格信息 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-12-14 * @desc description */ public function SpecDetail() { // 开始处理 $params = $this->data_request; $ret = GoodsService::GoodsSpecDetail($params); return ApiService::ApiDataReturn($ret); } /** * 商品数量选择 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-12-14 * @desc description */ public function Stock() { // 开始处理 $params = $this->data_request; $ret = GoodsService::GoodsStock($params); return ApiService::ApiDataReturn($ret); } /** * 商品分类 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2018-12-14 * @desc description */ public function Category() { $result = [ 'category' => GoodsCategoryService::GoodsCategoryAll($this->data_request), ]; return ApiService::ApiDataReturn(SystemBaseService::DataReturn($result)); } /** * 商品评分 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-07-11 * @desc description */ public function GoodsScore() { if(empty($this->data_request['goods_id'])) { $ret = DataReturn(MyLang('params_error_tips'), -1); } else { // 获取商品评分 $data = GoodsCommentsService::GoodsCommentsScore($this->data_request['goods_id']); $ret = DataReturn('success', 0, $data); } return ApiService::ApiDataReturn($ret); } /** * 商品评论 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @datetime 2019-05-13T21:47:41+0800 */ public function Comments() { // 条件 $where = [ 'goods_id' => $this->data_request['goods_id'], 'is_show' => 1, ]; // 获取总数 $total = GoodsCommentsService::GoodsCommentsTotal($where); $page_total = ceil($total/$this->page_size); $start = intval(($this->page-1)*$this->page_size); // 获取列表 $data_params = [ 'm' => $start, 'n' => $this->page_size, 'where' => $where, 'is_public' => 1, ]; $ret = GoodsCommentsService::GoodsCommentsList($data_params); // 返回数据 $result = [ 'number' => $this->page_size, 'total' => $total, 'page_total' => $page_total, 'data' => $ret['data'], ]; return ApiService::ApiDataReturn(SystemBaseService::DataReturn($result)); } } ?>