|
@@ -0,0 +1,56 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace app\data\controller\api;
|
|
|
+
|
|
|
+use app\data\model\DataXw;
|
|
|
+use app\data\model\DataXwCategory;
|
|
|
+use think\admin\Controller;
|
|
|
+use hg\apidoc\annotation\Title;
|
|
|
+use hg\apidoc\annotation\Returned;
|
|
|
+use hg\apidoc\annotation\Param;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Title("新闻报道")
|
|
|
+ */
|
|
|
+class Xw extends Controller
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * @Title("分类")
|
|
|
+ * @Returned ("id",desc="id")
|
|
|
+ * @Returned ("name",desc="名称")
|
|
|
+ */
|
|
|
+ public function category(){
|
|
|
+ $list=DataXwCategory::show()->order('sort','desc')->select();
|
|
|
+ $this->success('',$list);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @Title("列表")
|
|
|
+ * @Param ("page",desc="第几页")
|
|
|
+ * @Returned ("id",desc="id")
|
|
|
+ * @Returned ("title",desc="标题")
|
|
|
+ * @Returned ("images",desc="封面,用的|隔开的")
|
|
|
+ * @Returned ("has_video",desc="是否含有视频")
|
|
|
+ * @Returned ("source",desc="来源")
|
|
|
+ * @Returned ("create_time",desc="创建时间")
|
|
|
+ */
|
|
|
+ public function index(){
|
|
|
+ $page=input('page/d',1);
|
|
|
+ $limit=$this->getLimit();
|
|
|
+ $list=DataXw::show()
|
|
|
+ ->with('category')
|
|
|
+ ->withCount('comments')
|
|
|
+ ->order('id','desc')
|
|
|
+ ->select();
|
|
|
+ $this->success('',$list);
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function getLimit(){
|
|
|
+ $splitNum=sysconf('config_xw.split_num')?:3;
|
|
|
+ $min=15;
|
|
|
+ $limit=1;
|
|
|
+ while ($limit*$splitNum<15){
|
|
|
+ $limit++;
|
|
|
+ }
|
|
|
+ return $limit*$splitNum;
|
|
|
+ }
|
|
|
+}
|