getList(true, $longitude, $latitude); return $this->renderSuccess(compact('list')); } /** * 门店详情 * @param $shop_id * @return array * @throws \think\exception\DbException */ public function detail($shop_id) { $detail = ShopModel::detail($shop_id); return $this->renderSuccess(compact('detail')); } }