## 列表_搜索
~~~[api]
get:admin/user/?act=list
int:page=1#第几页
int:limit=10#一页显示多少内容
content#搜索内容
<<<
success
{
"code": 0,
"msg": "获取成功!",
"data": [
{
"id": 1,
"content": "我是内容",
"type": "我是分类",
"time": "2024-02-06 04:55:53"
}
],
"count": 1
}
<<<
error
~~~
## 查看
~~~
显示月份的数据就将月份的数据填写 然后留空年份,获取年份的数据同理
注:年月必须有一个传入值,且不能两个都同时传值!
且月的值只需要传任意的内容,而年的值需要填准确的值!
显示单独区域的数据传入区域,显示全部区域数据填入`all`
`type`值:
1,2,3分别按顺序代表下面的三个接口
~~~
### 蚊蝇灯捕获数量的统计
~~~[api]
get:admin/ch_trend/?act=get
*user_id#客户ID
moon#月
year#年
*region#区域
*type=1#获取数据类型
<<<
success
{
"code": 0,
"msg": "获取成功!",
"data": [
{
"id": 1,
"content": "我是内容",
"type": "我是分类",
"time": "2024-02-06 04:55:53"
}
],
"count": 1
}
<<<
error
~~~
### 捕鼠设施数据统计
~~~[api]
get:admin/ch_trend/?act=get
*user_id#客户ID
moon#月
year#年
*region#区域
*type=2#获取数据类型
<<<
success
{
"code": 0,
"msg": "获取成功!",
"data": [
{
"id": 1,
"content": "我是内容",
"type": "我是分类",
"time": "2024-02-06 04:55:53"
}
],
"count": 1
}
<<<
error
~~~
### 诱饵站的数据对比
~~~[api]
get:admin/ch_trend/?act=get
*user_id#客户ID
moon#月
year#年
*region#区域
*type=3#获取数据类型
<<<
success
{
"code": 0,
"msg": "获取成功!",
"data": [
{
"id": 1,
"content": "我是内容",
"type": "我是分类",
"time": "2024-02-06 04:55:53"
}
],
"count": 1
}
<<<
error
~~~