获取编辑任务数据
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>/admin/TaskManage/get_edit_task</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>任务id</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"info": {
"id": "1", #任务id
"task_no": "#20210322114247", #任务编号
"task_name": "", #任务名称
"task_desc": "", #任务描述
"task_level": "0", #优先级 默认为0 1非常低 2低 3中 4高 5紧急
"task_url": "", #原型连接
"task_rat": "", #难易程度系数
"charge_uid": "0", #负责人id
"status": "1", #状态 1待分配 2进行中 3已完成 4已关闭
"add_time": "0",
"add_uid": "0",
"start_time": "", #任务开始时间
"end_time": "", #任务结束时间
"expect_time": "", #预计上线时间
"is_online": "1", #是否上线 1为未上线 2为上线
"real_time": "0",
"test_case": "0", #有无冒烟测试用例 默认为0 1无 2有
"adjust_reason": "",
"close_uid": "0",
"close_time": "0",
"close_reason": "",
"player_uids": [ #参与人id
"1"
],
"progress": [ #进度
{
"role_type": "1", #角色 1UI设计 2开发人员 3测试人员
"start_time": "2021-03-01 00:00:00", #开始时间
"end_time": "2021-03-02 00:00:00" #截止时间
}
]
},
"status": 1,
"url": ""
}
</code></pre>