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