文章表字段
art_id int(11) 自動增量 文章id
title varchar(256) 文章標題
keywords varchar(100) NULL 關鍵詞
excerpt varchar(256) NULL 摘要
thumbnail varchar(100) NULL 縮略圖
type int(2) 1新聞2城市景區3旅游攻略
status tinyint(3) [0] 0待審核1通過2拒絕
thumbnail_big varchar(100) NULL 旅游攻略大圖
thumbnail_small1 varchar(100) NULL 旅游攻略小圖1
thumbnail_small2 varchar(100) NULL 旅游攻略小圖2
city_id int(2) 城市id
theme_id int(11) [0] 主題id
city_name varchar(20) NULL 城市名稱
swa int(11) [0] 文章瀏覽量
create_time int(11) 創建時間
update_time int(11) NULL 修改時間
文章內容表
content_id int(11) 自動增量 文章內容id
art_id int(11) 文章id
title varchar(256) 標題
content text 內容
create_time int(11) 創建時間
update_time int(11) NULL 修改時間
1.文章詳情
~~~[api]
get:https://wenlv.henan100.com/api.php/article/art_info
*number:art_id=默認值#文章id
<<<
success
{
"code": 1,
"msg": "ok",
"data": null
}
<<<
error
~~~
2.新聞列表
~~~[api]
get:https://wenlv.henan100.com/api.php/article/art_news_list
*number:page=默認值#頁碼(第幾頁)
<<<
success
{
"code": 1,
"msg": "ok",
"data": []
}
<<<
error
~~~
3.城市景區列表
~~~[api]
get:https://wenlv.henan100.com/api.php/article/art_city_list
*number:city_id=默認值#城市id(如果獲取全部,city_id=0)
<<<
success
{
"code": 1,
"msg": "ok",
"data": []
}
<<<
error
~~~
3.2城市景區搜索
~~~[api]
get:https://wenlv.henan100.com/api.php/article/art_city_search
*number:search=默認值#搜索關鍵詞)
<<<
success
{
"code": 1,
"msg": "ok",
"data": [
{
"art_id": 24,
"title": "黃帝故里",
"keywords": "5A景區丨拜祖大典",
"excerpt": "新鄭市黃帝故里景區,位于河南省鄭州市新鄭市軒轅路,為漢籍史書中記載有熊氏的族居地,故有熊國之墟。是國家AAAA級旅游景區、中國僑聯愛國主義教育基地、國家非物質文化遺產“新鄭黃帝拜祖祭典”的遺產地。",
"thumbnail": "http://2020app.henan100.com/upload/portal/20201230/aa339130c2a75bd96c9b3702c7fafd4b.jpg",
"type": 2,
"status": 1,
"thumbnail_big": null,
"thumbnail_small1": null,
"thumbnail_small2": null,
"city_id": 1,
"theme_id": 2,
"city_name": "鄭州",
"swa": 0,
"sort": 1,
"create_time": "2021-03-16 17:01:26",
"update_time": "2021-03-17 10:52:35"
}
]
}
<<<
error
~~~
4.旅游攻略列表
~~~[api]
get:https://wenlv.henan100.com/api.php/article/art_strategy_list
*number:page=默認值#頁碼(第幾頁)
<<<
success
{
"code": 1,
"msg": "ok",
"data": []
}
<<<
error
~~~
5.主題
~~~[api]
get:https://wenlv.henan100.com/api.php/article/art_theme
*number:theme_id=默認值#主題id
<<<
success
{
"code": 1,
"msg": "ok",
"data": {}
}
<<<
error
~~~
6.主題文章列表
~~~[api]
get:https://wenlv.henan100.com/api.php/article/art_theme_list
*number:theme_id=默認值#主題id
*number:city_id=默認值#城市id
<<<
success
{
"code": 1,
"msg": "ok",
"data": []
}
<<<
error
~~~
7.視頻列表
~~~[api]
get:https://wenlv.henan100.com/api.php/article/video_list
<<<
success
{
"code": 1,
"msg": "ok",
"data": [
{
"title": "1",
"thumbnail": "https://wenlv.henan100.com/upload/20210317/4a1b742922331eb923905b4a60ab9734.mp4"
}
]
}
<<<
error
~~~