Browse Source

假接口,轮播,新闻

lizhen_gitee 6 months ago
parent
commit
00f3689e7f
2 changed files with 63 additions and 0 deletions
  1. 23 0
      application/api/controller/zzz/Banner.php
  2. 40 0
      application/api/controller/zzz/News.php

+ 23 - 0
application/api/controller/zzz/Banner.php

@@ -0,0 +1,23 @@
+<?php
+
+namespace app\api\controller\zzz;
+
+use app\common\controller\Api;
+use think\Db;
+/**
+ *
+ */
+class Banner extends Api
+{
+    protected $noNeedLogin = ['*'];
+    protected $noNeedRight = ['*'];
+
+    //轮播图
+    public function banner()
+    {
+        $list = Db::name('zzz_banner')->field('id, title, image')->select();
+        $list = list_domain_image($list, ['image']);
+
+        $this->success(1, $list);
+    }
+}

+ 40 - 0
application/api/controller/zzz/News.php

@@ -0,0 +1,40 @@
+<?php
+
+namespace app\api\controller\zzz;
+
+use app\common\controller\Api;
+use think\Db;
+/**
+ *
+ */
+class News extends Api
+{
+    protected $noNeedLogin = ['*'];
+    protected $noNeedRight = ['*'];
+
+    //分类
+    public function typelist()
+    {
+        $list = Db::name('zzz_newstype')->field('id, name')->select();
+
+        $this->success(1, $list);
+    }
+
+    public function newslist(){
+        $type_id = input('type_id',0);
+
+        $list = Db::name('zzz_news')->field('content',true)->where('type_id',$type_id)->autopage()->select();
+        $list = list_domain_image($list,['image']);
+
+        $this->success(1, $list);
+    }
+
+    public function newsinfo(){
+        $id = input('id',0);
+
+        $info = Db::name('zzz_news')->where('id',$id)->find();
+        $info = info_domain_image($info,['image']);
+
+        $this->success(1, $info);
+    }
+}