alias('G') ->join('activity_goods AG', 'G.id = AG.goods_id') ->where($where) ->count(); $list = $goods->alias('G') ->join('activity_goods AG', 'G.id = AG.goods_id') ->where($where) ->field('G.id,G.name,G.image,G.min_price as price,sales_sum+virtual_sales_sum as sales_sum,G.market_price,AG.activity_id') ->select(); $more = is_more($count, $page, $size); //是否有下一页 $data = [ 'list' => $list, 'page_no' => $page, 'page_size' => $size, 'count' => $count, 'more' => $more ]; return $data; } }