[TOC=2]
## 枚举变量
### 来源:( source )
| 可选值 | 说明 |
| --- | --- |
| website | 官网 |
| android | 安卓 |
| ios | ios |
| mall | 商城 |
### 状态:( status )
| 可选值 | 说明 |
| --- | --- |
| pending | 待处理 |
| processed | 已处理 |
| ignore | 已忽略 |
## 意向列表
~~~[api]
get:/cooperation/list
int:current_page=1#当前页
int:page_number=10#页码
<<<
success
{
"code": 0,
"data": {
"list": [
{
"id": 1,
"source": "ios",//来源 见枚举变量
"name": "123",//姓名
"phone": "13333333333",//手机号
"email": "123@qq.com",//邮箱
"intention": "邮箱入股",//合作意向
"status": "pending",//状态
"create_time": "2018-05-15 16:53:33"//申请时间
}
],
"current_page": 1,//当前页
"page_number": 10,//页码
"total": 1//总条数
}
}
~~~
## 意向处理
~~~[api]
post:/cooperation/process
*int:id=1#id
*string:status=ignore#忽略
<<<
success
{
"code": 0,
"data": {
"id": 1,
"status": "ignore"
}
}
~~~
## 批量处理
~~~[api]
post:/cooperation/processBatch
*array:id_list=[1]#id 数组
*string:status=ignore#忽略
<<<
success
{
"code": 0
}
~~~
## 意向删除
~~~[api]
post:/cooperation/delete
*int:id=1#id
<<<
success
{
"code": 0,
"data": {
"id": 1
}
}
~~~
## 批量删除
~~~[api]
post:/cooperation/deleteBatch
*array:id_list=[1]#id 数组
<<<
success
{
"code": 0
}
~~~