企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ### 公告分类列表 #### URL > web/index.php?c=article&a=notice&do=category #### 请求方式 > GET #### 请求参数 无 #### 返回数据 ``` { "message": { "errno": 0, "message": { "5": { "id": "5", "title": "公告分类", "displayorder": "255", "type": "notice" }, "16": { "id": "16", "title": "测试版公告01", "displayorder": "2", "type": "notice" }, "17": { "id": "17", "title": "测试版公告02", "displayorder": "3", "type": "notice" } } }, "redirect": "", "type": "ajax" } ``` ### 删除公告分类 #### URL > web/index.php?c=article&a=notice&do=category_del&id=公告分类id #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | id | int |是 | 公告分类id | || #### 返回数据 ``` { "message": { "errno": 0, "message": "删除公告分类成功" }, "redirect": "", "type": "ajax" } ``` ### 获取某一公告分类详情 #### URL > web/index.php?c=article&a=notice&do=category_info&id=公告分类ID #### 请求方式 > POST #### 参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ------- | :-----:| :------: | ---- | | id | int | 是 | 公告分类ID|-| #### 返回数据 ``` { "message": { "errno": 0, "message": { "id": "23", "title": "分类1", "displayorder": "1", "type": "notice" } }, "redirect": "", "type": "ajax" } ``` ### 修改公告分类 #### URL > web/index.php?c=article&a=notice&do=category #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | id | int |是 | 分类id | | | displayorder | int |是 | 排序 | | | type | varcahr |是 | 分类类型 | 固定值 notice | | title | int |是 | 标题 | || #### 返回数据 ``` { "message": { "errno": 0, "message": "修改分类成功" }, "redirect": "", "type": "ajax" } ``` ### 添加公告分类 #### URL > web/index.php?c=article&a=notice&do=category_post #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | title | array |是 | 标题 | title[0]=标题一&title[1]=标题二... | | displayorder | array |是 | 标题排序 | displayorder[0]=1&displayorder[1]=2... | 注意:标题及标题排序下标是一一对应的关系,如title[0]对应displayorder[0] #### 返回数据 ``` { "message": { "errno": 0, "message": "添加公告分类成功" }, "redirect": "", "type": "ajax" } ```