xieruidong 2 年之前
父節點
當前提交
eebbf366af
共有 4 個文件被更改,包括 67 次插入2 次删除
  1. 56 0
      app/data/controller/api/Xw.php
  2. 7 1
      app/data/model/DataXw.php
  3. 3 1
      app/data/model/DataXwCategory.php
  4. 1 0
      config/apidoc.php

+ 56 - 0
app/data/controller/api/Xw.php

@@ -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;
+    }
+}

+ 7 - 1
app/data/model/DataXw.php

@@ -3,8 +3,11 @@
 namespace app\data\model;
 
 use think\admin\Model;
+use think\db\Query;
 use think\helper\Str;
-
+/**
+ * @method static|Query show()
+ */
 class DataXw extends Model
 {
     protected $type=[
@@ -26,4 +29,7 @@ class DataXw extends Model
     {
         return $this->belongsTo(DataXwCategory::class,'category_id');
     }
+    public function scopeShow(Query $query){
+        $query->where('status',1);
+    }
 }

+ 3 - 1
app/data/model/DataXwCategory.php

@@ -4,7 +4,9 @@ namespace app\data\model;
 
 use think\admin\Model;
 use think\db\Query;
-
+/**
+ * @method static|Query show()
+ */
 class DataXwCategory extends Model
 {
     public static function onAfterDelete(self $model): void

+ 1 - 0
config/apidoc.php

@@ -44,6 +44,7 @@ return [
                         \app\data\controller\api\business\Purchase::class,
                         \app\data\controller\api\business\User::class,
 
+                    \app\data\controller\api\Xw::class,