workbench($this->shop_id); return JsonServer::success('',$data); } /** * @notes 交易分析 * @return \think\response\Json * @author cjhao * @date 2021/11/11 14:37 */ public function trading(){ $data = (new StatisticsLogic)->trading($this->shop_id); return JsonServer::success('',$data); } /** * @notes 商品分析接口 * @param int $shop_id * @return array * @author cjhao * @date 2021/11/11 14:38 */ public function goodslist() { $data = (new StatisticsLogic())->goodslist($this->shop_id); return JsonServer::success('',$data); } /** * @notes 访问分析 * @return \think\response\Json * @author cjhao * @date 2021/11/11 14:43 */ public function visit() { $data = (new StatisticsLogic())->visit($this->shop_id); return JsonServer::success('',$data); } }