儿童端SDK
家长端H5集成
云平台API
光学硬件方案
概念和术语
附件A
support中心
过期文档
内容制作
小程序相关
即将上线
优学派批改接口
通过securityId获取扫描图数据接口
优学派可以批改通知接口
按照书本页码获取对应的试题和框数据接口
去笔迹接口
API

玩瞳文档中心


按照书本页码获取对应的试题和框数据接口

<p><strong>接口介绍: </strong> 按照书本页码获取对应的试题和框数据接口</p> <p><strong>请求URL:</strong> </p> <ul> <li><code>http://cloud-api1.51wanxue.com/api-cloud/correct/questFrameInfo?securityId = {securityId}&amp;amp;pageId={pageId}&amp;amp;token={token}</code></li> </ul> <p><strong>请求方式:</strong></p> <ul> <li>GET </li> </ul> <p><strong>请求参数:</strong></p> <table> <thead> <tr> <th>参数名</th> <th>必选</th> <th>类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td>token</td> <td>是</td> <td>string</td> <td>请求token [如何获取token](<a href="https://www.showdoc.com.cn/visiontalk/2458007396933681">https://www.showdoc.com.cn/visiontalk/2458007396933681</a> &quot;如何获取token&quot;)</td> </tr> <tr> <td>securityId</td> <td>是</td> <td>string</td> <td>书本唯一标识</td> </tr> <tr> <td>pageId</td> <td>是</td> <td>long</td> <td>页码id</td> </tr> </tbody> </table> <p><strong>返回:</strong></p> <table> <thead> <tr> <th>字段名</th> <th>类型</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td>questId</td> <td>long</td> <td>题id</td> </tr> <tr> <td>securityId</td> <td>string</td> <td>题安全id</td> </tr> <tr> <td>subject</td> <td>integer</td> <td>科目 学科(1语文,2数学,3英语,4政治,5历史,6地理,7生物,8物理,9化学)</td> </tr> <tr> <td>grade</td> <td>integer</td> <td>年级 年级(1-9)</td> </tr> <tr> <td>type</td> <td>integer</td> <td>题目类型 1: &quot;选择题&quot;, 2: &quot;填空题&quot;, 3: &quot;判断题&quot;, 9: &quot;问答题&quot;, 25: &quot;计算题&quot;</td> </tr> <tr> <td>fatherText</td> <td>string</td> <td>引文内容</td> </tr> <tr> <td>questCoordinateList</td> <td>PositionFingerPage[]</td> <td>习题坐标, 习题的框可能有多个,且框可能跨页</td> </tr> <tr> <td>fatherImages</td> <td>string[]</td> <td>引图</td> </tr> <tr> <td>questText</td> <td>string</td> <td>习题内容</td> </tr> <tr> <td>questImages</td> <td>string[]</td> <td>习题图片</td> </tr> <tr> <td>questCoordinate</td> <td>ShapeCoordinate</td> <td>习题坐标</td> </tr> <tr> <td>answerList</td> <td>AnswerCorrectVO[]</td> <td>答案,答题区的信息</td> </tr> <tr> <td>showAnswer</td> <td>string</td> <td>展示答案,一题一个</td> </tr> </tbody> </table> <p><strong>PositionFingerPage详解:</strong></p> <table> <thead> <tr> <th>字段名</th> <th>类型</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td>pageId</td> <td>long</td> <td>框的所在页面id</td> </tr> <tr> <td>positionFinger</td> <td>ShapeCoordinate</td> <td>框坐标信息</td> </tr> </tbody> </table> <p><strong>AnswerCorrectVO详解:</strong></p> <table> <thead> <tr> <th>字段名</th> <th>类型</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td>answer</td> <td>string</td> <td>答案</td> </tr> <tr> <td>ableToCorrect</td> <td>boolean</td> <td>是否支持批改 true/支持 false/不支持</td> </tr> <tr> <td>answerCoordinateList</td> <td>PositionFingerPage[]</td> <td>答案框信息,选择题和填空题框和答案是一一对应关系,判断题,计算题,问答题一个答案可能对应多个框,因此此处未兼容不同类型答案和框是一对多关系</td> </tr> </tbody> </table> <p><strong>ShapeCoordinate详解:</strong></p> <table> <thead> <tr> <th>字段名</th> <th>类型</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td>strokeStyle</td> <td>string</td> <td>框的样式</td> </tr> <tr> <td>shapeType</td> <td>integer</td> <td>图形类型 0/矩形 1/多边形</td> </tr> <tr> <td>name</td> <td>string</td> <td>框名称</td> </tr> <tr> <td>nickname</td> <td>string</td> <td>框别名</td> </tr> <tr> <td>shape</td> <td>Coordinate[]</td> <td>坐标数组 矩形坐标数量是2,分别表示左上角和右下角,多变形会有多个坐标,按排列顺序依次连接,x--相对图片左上角的横坐标,y--相对图片左上角的纵坐标</td> </tr> </tbody> </table> <p><strong>返回示例</strong></p> <pre><code>{     &amp;quot;code&amp;quot;: 0,     &amp;quot;msg&amp;quot;: &amp;quot;ok&amp;quot;,     &amp;quot;data&amp;quot;: [         {             &amp;quot;questId&amp;quot;: 16725765,             &amp;quot;securityId&amp;quot;: &amp;quot;539103883f1a4b789f792ba24ad1a3d6&amp;quot;,             &amp;quot;grade&amp;quot;: 1,             &amp;quot;subject&amp;quot;: 2,             &amp;quot;type&amp;quot;: 9,             &amp;quot;fatherText&amp;quot;: null,             &amp;quot;fatherImages&amp;quot;: [],             &amp;quot;questImages&amp;quot;: [],             &amp;quot;questText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;女生:我们班一共42人,每人需要一条红领巾。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;男生:已经领了40条红领巾。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;还需要领几条红领巾?&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=\&amp;quot;http://oss.51wanxue.com/file_service/quest/latex/c8de8f7fa99c44c8a802415e0d2c9fb7.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=T%2BbWtKRChmiYhMRZAtXNATjcsjw%3D\&amp;quot;&amp;gt;&amp;lt;img src=\&amp;quot;http://oss.51wanxue.com/file_service/quest/latex/9091e4372c9c4e69acbf30951029cc86.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=Yu8jtGw0w00GeQoaBBUB6D0PmFA%3D\&amp;quot;&amp;gt;&amp;lt;img src=\&amp;quot;http://oss.51wanxue.com/file_service/quest/latex/aabd566c91e7473f851bead050cfd98d.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=NdqAS22BbyThXm%2Fg3d0wavfYd3I%3D\&amp;quot;&amp;gt;=&amp;lt;img src=\&amp;quot;http://oss.51wanxue.com/file_service/quest/latex/84b4c899512b487f95f7e5d47b2abfcb.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=yhFAMGwMsyu0gWRT1ZYF6j28Bhw%3D\&amp;quot;&amp;gt;( ) &amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;questCoordinateList&amp;quot;: [                 {                     &amp;quot;pageId&amp;quot;: 8967066,                     &amp;quot;positionFinger&amp;quot;: {                         &amp;quot;shapeType&amp;quot;: 0,                         &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                         &amp;quot;shape&amp;quot;: [                             {                                 &amp;quot;x&amp;quot;: 1699.0,                                 &amp;quot;y&amp;quot;: 354.0                             },                             {                                 &amp;quot;x&amp;quot;: 3029.0,                                 &amp;quot;y&amp;quot;: 747.0                             }                         ],                         &amp;quot;name&amp;quot;: &amp;quot;layer5&amp;quot;,                         &amp;quot;chosenCode&amp;quot;: null,                         &amp;quot;nickName&amp;quot;: &amp;quot;区域5&amp;quot;                     }                 }             ],             &amp;quot;answerList&amp;quot;: [                 {                     &amp;quot;answer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;42-40=2(条)&amp;lt;/p&amp;gt;&amp;quot;,                     &amp;quot;ableToCorrect&amp;quot;: true,                     &amp;quot;answerCoordinateList&amp;quot;: [                         {                             &amp;quot;pageId&amp;quot;: 8967066,                             &amp;quot;positionFinger&amp;quot;: {                                 &amp;quot;shapeType&amp;quot;: 0,                                 &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                                 &amp;quot;shape&amp;quot;: [                                     {                                         &amp;quot;x&amp;quot;: 1786.1624932747488,                                         &amp;quot;y&amp;quot;: 645.0013502018088                                     },                                     {                                         &amp;quot;x&amp;quot;: 2317.9221776362983,                                         &amp;quot;y&amp;quot;: 728.5267049042014                                     }                                 ],                                 &amp;quot;name&amp;quot;: &amp;quot;layer10&amp;quot;,                                 &amp;quot;chosenCode&amp;quot;: null,                                 &amp;quot;nickName&amp;quot;: &amp;quot;区域10&amp;quot;                             }                         }                     ]                 }             ],             &amp;quot;knowledgeIdList&amp;quot;: [                 32685,                 32674             ],             &amp;quot;showAnswer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;42-40=2(条)&amp;lt;/p&amp;gt;&amp;quot;         },         {             &amp;quot;questId&amp;quot;: 16725899,             &amp;quot;securityId&amp;quot;: &amp;quot;547466d9d9a94ab986428d68759f7dba&amp;quot;,             &amp;quot;grade&amp;quot;: 1,             &amp;quot;subject&amp;quot;: 2,             &amp;quot;type&amp;quot;: 9,             &amp;quot;fatherText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;分一分,连一连。&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;fatherImages&amp;quot;: [],             &amp;quot;questImages&amp;quot;: [],             &amp;quot;questText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;30+6 7+60 72-2 24-20&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt; 得数大于50 得数小于50&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt; 88-8 85-80 62-2&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;questCoordinateList&amp;quot;: [                 {                     &amp;quot;pageId&amp;quot;: 8967066,                     &amp;quot;positionFinger&amp;quot;: {                         &amp;quot;shapeType&amp;quot;: 0,                         &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                         &amp;quot;shape&amp;quot;: [                             {                                 &amp;quot;x&amp;quot;: 295.3777013091822,                                 &amp;quot;y&amp;quot;: 883.9766706003207                             },                             {                                 &amp;quot;x&amp;quot;: 1354.2528806492107,                                 &amp;quot;y&amp;quot;: 1445.4526660997371                             }                         ],                         &amp;quot;name&amp;quot;: &amp;quot;layer8&amp;quot;,                         &amp;quot;chosenCode&amp;quot;: null,                         &amp;quot;nickName&amp;quot;: &amp;quot;区域8&amp;quot;                     }                 }             ],             &amp;quot;answerList&amp;quot;: [                 {                     &amp;quot;answer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;&amp;lt;img src=\&amp;quot;http://oss.51wanxue.com/file_service/quest/b2f32f4496f1490c8226695d779c3f60.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=BBBiCijGxpk9wJKt7T3PnVX3VjY%3D\&amp;quot; alt=\&amp;quot;11a1531b-28e4-4fb8-82f6-3b369dc3c4c4.png\&amp;quot; data-href=\&amp;quot;\&amp;quot;&amp;gt;&amp;lt;/p&amp;gt;&amp;quot;,                     &amp;quot;ableToCorrect&amp;quot;: false,                     &amp;quot;answerCoordinateList&amp;quot;: [                         {                             &amp;quot;pageId&amp;quot;: 8967066,                             &amp;quot;positionFinger&amp;quot;: {                                 &amp;quot;shapeType&amp;quot;: 0,                                 &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                                 &amp;quot;shape&amp;quot;: [                                     {                                         &amp;quot;x&amp;quot;: 295.3777013091822,                                         &amp;quot;y&amp;quot;: 883.9766706003207                                     },                                     {                                         &amp;quot;x&amp;quot;: 1354.2528806492107,                                         &amp;quot;y&amp;quot;: 1445.4526660997371                                     }                                 ],                                 &amp;quot;name&amp;quot;: &amp;quot;layer8&amp;quot;,                                 &amp;quot;chosenCode&amp;quot;: null,                                 &amp;quot;nickName&amp;quot;: &amp;quot;区域8&amp;quot;                             }                         }                     ]                 }             ],             &amp;quot;knowledgeIdList&amp;quot;: [                 33151,                 33147             ],             &amp;quot;showAnswer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;&amp;lt;img src=\&amp;quot;http://oss.51wanxue.com/file_service/quest/b2f32f4496f1490c8226695d779c3f60.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=BBBiCijGxpk9wJKt7T3PnVX3VjY%3D\&amp;quot; alt=\&amp;quot;11a1531b-28e4-4fb8-82f6-3b369dc3c4c4.png\&amp;quot; data-href=\&amp;quot;\&amp;quot;&amp;gt;&amp;lt;/p&amp;gt;&amp;quot;         },         {             &amp;quot;questId&amp;quot;: 16725761,             &amp;quot;securityId&amp;quot;: &amp;quot;a568d80a9e734eaab2afed1f55a44287&amp;quot;,             &amp;quot;grade&amp;quot;: 1,             &amp;quot;subject&amp;quot;: 2,             &amp;quot;type&amp;quot;: 9,             &amp;quot;fatherText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;语文课上,老师组织同学们进行诗歌接龙比赛。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;老师:朗诵一首诗得1分,背诵一首诗得10分。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;文文:我朗诵了5首诗,背诵了3首诗。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;奇奇:我朗诵了3首诗,背诵了5首诗。&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;fatherImages&amp;quot;: [                 &amp;quot;http://oss.51wanxue.com/file_service/quest/book/de722f8c6d254a409fd42bebb3e0dbbb.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=eRatxOrEj2RfWZfbtPfXWIa3VSk%3D&amp;quot;             ],             &amp;quot;questImages&amp;quot;: [],             &amp;quot;questText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;文文得到了多少分?&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;questCoordinateList&amp;quot;: [                 {                     &amp;quot;pageId&amp;quot;: 8967066,                     &amp;quot;positionFinger&amp;quot;: {                         &amp;quot;shapeType&amp;quot;: 0,                         &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                         &amp;quot;shape&amp;quot;: [                             {                                 &amp;quot;x&amp;quot;: 1718.8217472202296,                                 &amp;quot;y&amp;quot;: 863.0953319247226                             },                             {                                 &amp;quot;x&amp;quot;: 2266.836094422525,                                 &amp;quot;y&amp;quot;: 1090.469908614569                             }                         ],                         &amp;quot;name&amp;quot;: &amp;quot;layer13&amp;quot;,                         &amp;quot;chosenCode&amp;quot;: null,                         &amp;quot;nickName&amp;quot;: &amp;quot;区域13&amp;quot;                     }                 }             ],             &amp;quot;answerList&amp;quot;: [                 {                     &amp;quot;answer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;&amp;lt;span&amp;gt;$(1 + 1 + 1 + 1 + 1 + 10 + 10 + 10 =35)$&amp;lt;/span&amp;gt;(分)&amp;lt;/p&amp;gt;&amp;quot;,                     &amp;quot;ableToCorrect&amp;quot;: true,                     &amp;quot;answerCoordinateList&amp;quot;: [                         {                             &amp;quot;pageId&amp;quot;: 8967066,                             &amp;quot;positionFinger&amp;quot;: {                                 &amp;quot;shapeType&amp;quot;: 0,                                 &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                                 &amp;quot;shape&amp;quot;: [                                     {                                         &amp;quot;x&amp;quot;: 1718.8217472202296,                                         &amp;quot;y&amp;quot;: 863.0953319247226                                     },                                     {                                         &amp;quot;x&amp;quot;: 2266.836094422525,                                         &amp;quot;y&amp;quot;: 1090.469908614569                                     }                                 ],                                 &amp;quot;name&amp;quot;: &amp;quot;layer13&amp;quot;,                                 &amp;quot;chosenCode&amp;quot;: null,                                 &amp;quot;nickName&amp;quot;: &amp;quot;区域13&amp;quot;                             }                         }                     ]                 }             ],             &amp;quot;knowledgeIdList&amp;quot;: [                 33157             ],             &amp;quot;showAnswer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;&amp;lt;span&amp;gt;$(1 + 1 + 1 + 1 + 1 + 10 + 10 + 10 =35)$&amp;lt;/span&amp;gt;(分)&amp;lt;/p&amp;gt;&amp;quot;         },         {             &amp;quot;questId&amp;quot;: 16725760,             &amp;quot;securityId&amp;quot;: &amp;quot;8368d617ed604ba4b12e88f0246a4775&amp;quot;,             &amp;quot;grade&amp;quot;: 1,             &amp;quot;subject&amp;quot;: 2,             &amp;quot;type&amp;quot;: 9,             &amp;quot;fatherText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;语文课上,老师组织同学们进行诗歌接龙比赛。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;老师:朗诵一首诗得1分,背诵一首诗得10分。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;文文:我朗诵了5首诗,背诵了3首诗。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;奇奇:我朗诵了3首诗,背诵了5首诗。&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;fatherImages&amp;quot;: [                 &amp;quot;http://oss.51wanxue.com/file_service/quest/book/de722f8c6d254a409fd42bebb3e0dbbb.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=eRatxOrEj2RfWZfbtPfXWIa3VSk%3D&amp;quot;             ],             &amp;quot;questImages&amp;quot;: [],             &amp;quot;questText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;奇奇得到了多少分?&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;questCoordinateList&amp;quot;: [                 {                     &amp;quot;pageId&amp;quot;: 8967066,                     &amp;quot;positionFinger&amp;quot;: {                         &amp;quot;shapeType&amp;quot;: 0,                         &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                         &amp;quot;shape&amp;quot;: [                             {                                 &amp;quot;x&amp;quot;: 1735.0764100609756,                                 &amp;quot;y&amp;quot;: 1109.0310985484339                             },                             {                                 &amp;quot;x&amp;quot;: 2255.2256209648494,                                 &amp;quot;y&amp;quot;: 1336.40567523828                             }                         ],                         &amp;quot;name&amp;quot;: &amp;quot;layer14&amp;quot;,                         &amp;quot;chosenCode&amp;quot;: null,                         &amp;quot;nickName&amp;quot;: &amp;quot;区域14&amp;quot;                     }                 }             ],             &amp;quot;answerList&amp;quot;: [                 {                     &amp;quot;answer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;&amp;lt;span&amp;gt;$(1 + 1 + 1 + 10 + 10 + 10 + 10 + 10 =53)$&amp;lt;/span&amp;gt;(分)&amp;lt;/p&amp;gt;&amp;quot;,                     &amp;quot;ableToCorrect&amp;quot;: true,                     &amp;quot;answerCoordinateList&amp;quot;: [                         {                             &amp;quot;pageId&amp;quot;: 8967066,                             &amp;quot;positionFinger&amp;quot;: {                                 &amp;quot;shapeType&amp;quot;: 0,                                 &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                                 &amp;quot;shape&amp;quot;: [                                     {                                         &amp;quot;x&amp;quot;: 1735.0764100609756,                                         &amp;quot;y&amp;quot;: 1109.0310985484339                                     },                                     {                                         &amp;quot;x&amp;quot;: 2255.2256209648494,                                         &amp;quot;y&amp;quot;: 1336.40567523828                                     }                                 ],                                 &amp;quot;name&amp;quot;: &amp;quot;layer14&amp;quot;,                                 &amp;quot;chosenCode&amp;quot;: null,                                 &amp;quot;nickName&amp;quot;: &amp;quot;区域14&amp;quot;                             }                         }                     ]                 }             ],             &amp;quot;knowledgeIdList&amp;quot;: [                 33157             ],             &amp;quot;showAnswer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;&amp;lt;span&amp;gt;$(1 + 1 + 1 + 10 + 10 + 10 + 10 + 10 =53)$&amp;lt;/span&amp;gt;(分)&amp;lt;/p&amp;gt;&amp;quot;         },         {             &amp;quot;questId&amp;quot;: 16725770,             &amp;quot;securityId&amp;quot;: &amp;quot;fc09d7dd333a4c89a62916d547b33f3c&amp;quot;,             &amp;quot;grade&amp;quot;: 1,             &amp;quot;subject&amp;quot;: 2,             &amp;quot;type&amp;quot;: 2,             &amp;quot;fatherText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt; 数字卡片里的数学&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt; 同学们,今天我们在数字卡片里寻找数学问题。文文从数字卡片里任意抽出了四张,分别是3、5、7、8。&amp;lt;/p&amp;gt;&amp;lt;table class=\&amp;quot;table-default\&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th colspan=\&amp;quot;1\&amp;quot; rowspan=\&amp;quot;1\&amp;quot; width=\&amp;quot;auto\&amp;quot;&amp;gt;组成最大的两位数,要把最大的数字放在十位,把第二大的数字放在个位。&amp;lt;br&amp;gt;组成最小的两位数,要把最小的数字放在十位,把第二小的数字放在个位。&amp;lt;br&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;p&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;fatherImages&amp;quot;: [],             &amp;quot;questImages&amp;quot;: [                 &amp;quot;http://oss.51wanxue.com/file_service/quest/book/d2eac97b8bd64fd69d7e6d9d48709612.png?Expires=1724406127&amp;amp;OSSAccessKeyId=LTAI6bynfmufzinM&amp;amp;Signature=jcYviRwMjmdMVFz8ABcrTxVzpiA%3D&amp;quot;             ],             &amp;quot;questText&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;想一想&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;从中选择两张数字卡片组成两位数,最大的两位数是(______),最小的两位数是(______)。&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;3 5 7 8&amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/p&amp;gt;&amp;quot;,             &amp;quot;questCoordinateList&amp;quot;: [                 {                     &amp;quot;pageId&amp;quot;: 8967066,                     &amp;quot;positionFinger&amp;quot;: {                         &amp;quot;shapeType&amp;quot;: 0,                         &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                         &amp;quot;shape&amp;quot;: [                             {                                 &amp;quot;x&amp;quot;: 1723.4659366032997,                                 &amp;quot;y&amp;quot;: 1730.8309613329116                             },                             {                                 &amp;quot;x&amp;quot;: 2833.4271991571018,                                 &amp;quot;y&amp;quot;: 1988.3674716652883                             }                         ],                         &amp;quot;name&amp;quot;: &amp;quot;layer20&amp;quot;,                         &amp;quot;chosenCode&amp;quot;: null,                         &amp;quot;nickName&amp;quot;: &amp;quot;区域20&amp;quot;                     }                 }             ],             &amp;quot;answerList&amp;quot;: [                 {                     &amp;quot;answer&amp;quot;: &amp;quot;87&amp;quot;,                     &amp;quot;ableToCorrect&amp;quot;: true,                     &amp;quot;answerCoordinateList&amp;quot;: [                         {                             &amp;quot;pageId&amp;quot;: 8967066,                             &amp;quot;positionFinger&amp;quot;: {                                 &amp;quot;shapeType&amp;quot;: 0,                                 &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                                 &amp;quot;shape&amp;quot;: [                                     {                                         &amp;quot;x&amp;quot;: 1769.9078304340028,                                         &amp;quot;y&amp;quot;: 1921.0831581550276                                     },                                     {                                         &amp;quot;x&amp;quot;: 1888.3346597022955,                                         &amp;quot;y&amp;quot;: 1990.6876204070215                                     }                                 ],                                 &amp;quot;name&amp;quot;: &amp;quot;layer15&amp;quot;,                                 &amp;quot;chosenCode&amp;quot;: null,                                 &amp;quot;nickName&amp;quot;: &amp;quot;区域15&amp;quot;                             }                         }                     ]                 },                 {                     &amp;quot;answer&amp;quot;: &amp;quot;35&amp;quot;,                     &amp;quot;ableToCorrect&amp;quot;: true,                     &amp;quot;answerCoordinateList&amp;quot;: [                         {                             &amp;quot;pageId&amp;quot;: 8967066,                             &amp;quot;positionFinger&amp;quot;: {                                 &amp;quot;shapeType&amp;quot;: 0,                                 &amp;quot;strokeStyle&amp;quot;: &amp;quot;#FF0000&amp;quot;,                                 &amp;quot;shape&amp;quot;: [                                     {                                         &amp;quot;x&amp;quot;: 2255.2256209648494,                                         &amp;quot;y&amp;quot;: 1928.0436043802272                                     },                                     {                                         &amp;quot;x&amp;quot;: 2378.2966396162124,                                         &amp;quot;y&amp;quot;: 1988.3674716652883                                     }                                 ],                                 &amp;quot;name&amp;quot;: &amp;quot;layer16&amp;quot;,                                 &amp;quot;chosenCode&amp;quot;: null,                                 &amp;quot;nickName&amp;quot;: &amp;quot;区域16&amp;quot;                             }                         }                     ]                 }             ],             &amp;quot;knowledgeIdList&amp;quot;: [                 33841,                 33860             ],             &amp;quot;showAnswer&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;1. 87 &amp;lt;/p&amp;gt;&amp;lt;p&amp;gt;2. 35&amp;lt;/p&amp;gt;&amp;quot;         }     ] } </code></pre>

页面列表

ITEM_HTML