URL | pp.module.get_list |
---|---|
请求方式 | POST |
请求参数
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
token | [string] | 是 | 登录返回参数 |
module | [string] | 是 | select_expert |
pageNum | [string] | 是 | 分页加载,页码 |
pageSize | [string] | 是 | 分页加载,页长 |
filter | [json] | 是 | 过滤条件 |
type_id | [int] | 是 | 资源类型id |
is_show_have_time | [string] | 是 | 1:显示空闲专家,0:全部专家 |
start_time | [string] | 是 | 开始时间 |
end_time | [string] | 是 | 结束时间 |
"filter": "[{"filter_key":"type_id","filter_value":""},{"filter_key":"is_show_have_time","filter_value":true},{"filter_key":"start_time","filter_value":"2020-10-28 17:00"},{"filter_key":"end_time","filter_value":"2020-10-29 17:00"}]"
返回结果参数说明
参数名 | 类型 | 必含 | 说明 |
---|---|---|---|
status | [int] | 是 | 返回数据状态 1:成功,0:失败 |
msg | [string] | 是 | 返回提示信息 |
data | [json] | 是 | 结果对象包括下述字段: |
cols | [json] | 是 | 展示行数组 |
field | [string] | 是 | 字段对应参数名称 |
caption | [string] | 是 | 字段显示title |
visible | [string] | 是 | 是否可见 |
buttons | [json] | 是 | 按钮组件列表 |
data | [json] | 是 | 数据 |
pageCount | [int] | 是 | 页长 |
pageNum | [int] | 是 | 页码 |
dataCount | [int] | 是 | 总条数 |
list | [json] | 是 | 列表 |
id | [string] | 是 | id |
score | [string] | 是 | 评分 |
dep_name | [string] | 是 | 专家部门id |
departmentid | [string] | 是 | 专家部门 |
realname | [string] | 是 | 专家名称 |
is_del | [string] | 是 | 是否删除 |
corpid | [string] | 是 | 企业id |
userid | [string] | 是 | 专家id |
type_name | [string] | 是 | 资源类型名称 |
type_id | [string] | 是 | 资源类型ID |
label_list | [json] | 是 | 标签列表 |
label_name | [string] | 是 | 标签名称 |
{
"status": 1,
"msg": "",
"data": {
"cols": [{//展示行数组
"field": "id", //字段对应参数名称
"caption": "",//字段显示title
"visible": 0 //是否可见
}, {
"field": "realname", //字段上传对应参数名称
"caption": "名称",//字段显示title
"visible": 1 //是否可见
}, {
"field": "dep_name",
"caption": "部门名称",
"visible": 1
}, {
"field": "score",
"caption": "评分",
"visible": 1
}, {
"field": "label",
"caption": "标签",
"visible": 1
}],
"buttons": [],//按钮组件列表
"data": {
"pageCount": 1,
"pageNum": 1,
"dataCount": "5",
"list": [{
"id": "6",
"type_id": "7",
"type_name": "大专家",
"userid": "19739",
"corpid": "2040",
"is_del": "0",
"realname": "张大炮",
"departmentid": "4902",
"dep_name": "新气象无大咖",
"score": 0,
"label_list": [],
"label_name": ""
}]
},
"filter_module": "res_filter"//筛选模块
}
}
网友评论