chuweiqiang преди 1 година
родител
ревизия
585d2bb52c
променени са 2 файла, в които са добавени 38 реда и са изтрити 9 реда
  1. 12 0
      app/data/controller/api/Xw.php
  2. 26 9
      app/data/controller/api/auth/BestKnowledge.php

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

@@ -122,6 +122,18 @@ class Xw extends Auth
     }
 
     /**
+     * @Title("广告详情")
+     * @Param ("id",desc="广告id")
+     * @Returned ("见列表")
+     */
+    public function ad_show(){
+        $xw=DataXwAd::show()
+            ->where('id',input('id'))->findOrFail();
+        $this->success('',$xw);
+    }
+
+
+    /**
      * @Title("点赞或取消")
      * @Param ("id",desc="新闻id")
      */

+ 26 - 9
app/data/controller/api/auth/BestKnowledge.php

@@ -197,14 +197,14 @@ class BestKnowledge extends Auth
 
 
     /**
-     * @Title("百知文库详情页")
-     * @Method("post")
-     * @Header("api-name",type="string",require=1,default="",desc="访问类型")
-     * @Header("api-token",type="string",require=0,default="",desc="token")
-     * @Param("id",type="int",require=0,default="1",desc="id")
-     *
-     * @Returned("is_collect",desc="是否收藏1:已收藏0:未收藏")
-     */
+ * @Title("百知文库详情页")
+ * @Method("post")
+ * @Header("api-name",type="string",require=1,default="",desc="访问类型")
+ * @Header("api-token",type="string",require=0,default="",desc="token")
+ * @Param("id",type="int",require=0,default="1",desc="id")
+ *
+ * @Returned("is_collect",desc="是否收藏1:已收藏0:未收藏")
+ */
     public function knowdetail(){
         $id = input('id');
         $uuid = $this->uuid;
@@ -220,6 +220,23 @@ class BestKnowledge extends Auth
         $this->success('成功',$detail);
     }
 
+    /**
+     * @Title("广告详情页")
+     * @Method("post")
+     * @Header("api-name",type="string",require=1,default="",desc="访问类型")
+     * @Header("api-token",type="string",require=0,default="",desc="token")
+     * @Param("id",type="int",require=0,default="1",desc="id")
+     *
+     */
+    public function ad_detail(){
+        $id = input('id');
+        $detail = DataBestKnowledgeAd::mk()
+            ->where('status',1)
+            ->where('id',$id)
+            ->findOrFail();
+        $this->success('成功',$detail);
+    }
+
 
     /**
      * @Title("百知文库收藏/取消收藏")
@@ -286,4 +303,4 @@ class BestKnowledge extends Auth
 
 
 
-}
+}