获取考评项列表
<h5>简要描述</h5>
<ul>
<li>获取考评项列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/api/evaluation/getEvaluationOptionList</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET</li>
</ul>
<h5>参数</h5>
<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;">evaluationId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>考评卷子编号</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
"code": 20000,
"msg": "success",
"time": "2020-11-05 15:43:01",
"data": {
"info": [
{
"evaluationOptionId": 89,
"evaluationId": 37,
"title": "直播开场",
"rename_title": "开播",
"detail": "问好、自我介绍、直播计划、促销活动",
"keywords": "",
"score": "5.00",
"totalScore" : 10
"duration": 25//间隔25秒后到下一个模块
},
{
"evaluationOptionId": 90,
"evaluationId": 37,
"title": "商品陈述",
"rename_title": "商品自由陈述",
"detail": "展示商品、介绍商品的特点、卖点、应用场景、竞品对比等",
"keywords": "",
"score": "3.00",
"totalScore" : 10
"duration":175//间隔175秒后到下一个模块
},
{
"evaluationOptionId": 91,
"evaluationId": 37,
"title": "直播间互动",
"rename_title": "直播间互动"",
"detail": "弹幕问题出现的规定时间内完成回答且回答内容符合背景资料",
"keywords": "",
"score": "0.00",
"totalScore" : 10
"duration": 30,//这个模块特殊,使用qalist进行各个问题的弹窗,直接弹出包邮吗的问题
qaList: [
{
"evaluationQaId": 72,
"question": "包邮吗?多少包邮啊?",
"duration": 15//15秒后下一个问题
"score": 2
},{
"evaluationQaId": 73,
"question": "我是问题2",
"duration": 15//15秒后没有问题了就下一个模块
"score": 2
}
]
},
{
"evaluationOptionId": 92,
"evaluationId": 37,
"title": "直播结尾",
"rename_title": "下播"",
"detail": "感谢粉丝、引导关注、预告下一场直播",
"keywords": "",
"score": "1.00",
"totalScore" : 10
"duration": 25//25秒后结束了
}
]
}
}</code></pre>
<p>各个模块阶段页面截图和弹窗如下:
<img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=2c54b4f71d2b33901c21a623f6136a87&file=file.jpg" alt="" /></p>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=ca04f36dd02d450e7261582d105df21f&file=file.jpg" alt="" /></p>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=85371a5545d7987449a723c1293cf92a&file=file.jpg" alt="" /></p>
<p><img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=996daf13ca62d48202afbc07400a6e90&file=file.jpg" alt="" /></p>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">groupid</td>
<td style="text-align: left;">int</td>
<td>用户组id,1:超级管理员;2:普通用户</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>