ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## 列表 ~~~[api] post:/usertodo/getlist *int:page=默认值1#分页 *int:limit=默认值5#每页显示条数 int:status=1#筛选状态 0待办中,1已完成 string:start=2018-10-10#筛选开始时间 string:end=2018-11-10#筛选结束时间 int:member_id=1#会员id int:user_id=1#员工id <<< success { "code": 0, "info": "成功", "data":[ { "id": 1, "member_id": 439, "user_id": 1000, "shop_id": 1, "title": "tesst", "state": 0, "create_date": "2018-10-13", "complete_date": null, "delay": 0, "type": 1, "relation_id": 0, "target_reach": "目标", "info": "" } ] }<<< error ~~~ ## 详情 ~~~[api] post:/usertodo/info *int:id=默认值1#id <<< success { "code": 0, "info": "成功", "data":{ "id": 1, "member_id": 439, "user_id": 1000, "shop_id": 1, "title": "tesst", "state": 0, "create_date": "1970-01-01", "complete_date": null, "delay": 0, "type": 1, "relation_id": 0, "target_reach": "目标", "info": "", "user_name": "老板", "member_name": "小孟同学" } } <<< error ~~~ ##获取再次提醒数组 ~~~[api] post:/usertodo/getTodoArr <<< success { "code": 0, "info": "成功", "data":[ "不提醒", "明天提醒", "后天提醒", "3天后提醒", "4天后提醒", "5天后提醒", "6天后提醒", "7天后提醒" ] } <<< error ~~~ ## 跟进 ~~~[api] post:/usertodo/edit *int:id=默认值1#id *int:state=0 #状态 0-待办中,1-已完成,2-未完成 *int:remind_way=1 #再次提醒 *string:info=说明#说明 <<< success { "code": 0, "info": "成功", "data": 1 } <<< error ~~~