Commit 2d818403 authored by duxinyuan's avatar duxinyuan

1

parent 738c9d8e
......@@ -303,5 +303,15 @@ class News extends Basic
return $this->response("300", "失败");
}
}
/**
* @return \think\response\View
*/
public function plNews() {
if (!$this->request->isAjax()) {
return view('plNews');
}
}
}
\ No newline at end of file
......@@ -739,6 +739,7 @@ Route::group('broker', [
'getNewsLabel' => ['api_broker/news/getNewsLabel', ['method' => 'GET']], //商学院标签
'getComment' => ['api_broker/news/getComment', ['method' => 'GET']], //商学院评论列表
'commentNews' => ['api_broker/news/commentNews', ['method' => 'POST']], //评论商学院文章
'plNews' => ['api_broker/news/plNews', ['method' => 'GET']], //商学院评论
'addCollectUser' => ['api_broker/CollectUser/addCollectUser', ['method' => 'POST|GET']], //收藏或取消收藏客户
'addCollectHouse' => ['api_broker/CollectHouse/addCollectHouse', ['method' => 'POST|GET']], //收藏或取消收藏商铺
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment