Commit e6aebe0f authored by 李维's avatar 李维

添加连线选择题的历史记录显示

parent 81ce15f6
...@@ -766,7 +766,7 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -766,7 +766,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
validater = this.setCrosswordPuzzleInput(configItem, isDebug); validater = this.setCrosswordPuzzleInput(configItem, isDebug);
this.scoreValidater.push(validater); this.scoreValidater.push(validater);
break; break;
// 文字排序 // 文字排序 [做题 - 显示]
case SORT_WORDS: case SORT_WORDS:
validater = this.setSortWords(configItem, this.data.hotZoneItemArr[configItem.linkHotZoneIndex], isDebug); validater = this.setSortWords(configItem, this.data.hotZoneItemArr[configItem.linkHotZoneIndex], isDebug);
this.scoreValidater.push(validater); this.scoreValidater.push(validater);
...@@ -776,7 +776,7 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -776,7 +776,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
validater = this.setPronunciationAssessment(configItem, this.data.hotZoneItemArr[configItem.linkHotZoneIndex]); validater = this.setPronunciationAssessment(configItem, this.data.hotZoneItemArr[configItem.linkHotZoneIndex]);
this.scoreValidater.push(validater); this.scoreValidater.push(validater);
break; break;
// 连线选择 // 连线选择 [做题 - 显示]
case CONNECTION_CHOICE: case CONNECTION_CHOICE:
validater = this.setConnectionChoice(configItem, isDebug); validater = this.setConnectionChoice(configItem, isDebug);
this.scoreValidater.push(validater); this.scoreValidater.push(validater);
...@@ -867,6 +867,14 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -867,6 +867,14 @@ export default class SceneComponent extends MyCocosSceneComponent {
case SORT_WORDS: case SORT_WORDS:
this.showSortWords(configItem, resultData); this.showSortWords(configItem, resultData);
break; break;
// 语音评测
case PRONUNCIATION_ASSESSMENT:
this.showPronunciationAssessment(configItem, resultData);
break;
// 连线选择
case CONNECTION_CHOICE:
this.showConnectionChoice(configItem, resultData);
break;
} }
}) })
...@@ -1417,6 +1425,93 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -1417,6 +1425,93 @@ export default class SceneComponent extends MyCocosSceneComponent {
resultIconRect.addChild(errIcon); resultIconRect.addChild(errIcon);
} }
} }
// 语音评测题型 - 历史记录
showPronunciationAssessment(configItem, resultData) {
console.log(configItem, resultData)
}
// 连线选择 - 历史记录
showConnectionChoice(configItem, resultData) {
console.log(configItem, resultData)
const debugMode = false;
const resultIconShowData = this.data.hotZoneItemArr[configItem.linkResultShowHotZoneIndex];
const resultIconRect = this.newRectNode(resultIconShowData, layer_2, debugMode);
const errIcon = getSprNode("icon_answer_wrong");
const rightIcon = getSprNode("icon_answer_right");
// 图标太大 缩小一半
errIcon.scale = rightIcon.scale = 0.5;
// 显示在热区的中间
errIcon.x = rightIcon.x = resultIconRect.width / 2;
errIcon.y = rightIcon.y = resultIconRect.height / 2;
if(resultData[0].result.right) {
resultIconRect.addChild(rightIcon);
} else {
resultIconRect.addChild(errIcon);
}
const iconStart = this.getSprNode("icon_connect_start");
const startHotZoneData = this.data.hotZoneItemArr[configItem.linkHotZoneIndex];
const startRect = this.newRectNode(startHotZoneData, layer_4, debugMode);
iconStart.zIndex = layer_2;
iconStart.x = startRect.width / 2;
iconStart.y = startRect.height / 2;
startRect.addChild(iconStart);
// 连线点都显示出来
const endRects = [];
configItem.contentList.forEach(item => {
if(item.selectHotZoneIndex >= 0 && this.data.hotZoneItemArr[item.selectHotZoneIndex]) {
const endHotZoneData = this.data.hotZoneItemArr[item.selectHotZoneIndex];
const endRect = this.newRectNode(endHotZoneData, layer_5, debugMode);
const iconEnd = this.getSprNode("icon_connect_end");
iconEnd.zIndex = layer_2;
iconEnd.x = endRect.width / 2;
iconEnd.y = endRect.height / 2;
endRect.addChild(iconEnd);
endRects.push(endRect)
} else {
endRects.push(null)
}
});
const endRect = endRects[resultData[0].result.currentEndIndex];
if(!startRect || !endRect) {
return
}
const lineNode = new cc.Node();
lineNode.name = 'connect1_0';
startRect.addChild(lineNode)
const ctx = lineNode.addComponent(cc.Graphics);
ctx.lineWidth = 4;
const localPos = lineNode.parent.convertToNodeSpaceAR(endRect.parent.convertToWorldSpaceAR(cc.v2(endRect.x + endRect.width / 2, endRect.y + endRect.height / 2)));
// 清除上一次的痕迹
ctx.clear()
// 移动到当前开始节点的中心开始画线
ctx.moveTo(startRect.width / 2, startRect.height / 2);
// 终点坐标在上面已经计算好了 这里使用
ctx.lineTo(localPos.x, localPos.y);
// 画线
ctx.stroke();
// 结果显示节点
if(configItem.linkHotZoneShowIndex && configItem.linkHotZoneShowIndex >= 0 && this.data.hotZoneItemArr[configItem.linkHotZoneShowIndex] && resultData[0].result.currentEndText) {
const linkedTextData = this.data.hotZoneItemArr[configItem.linkHotZoneShowIndex];
const textNodePartent = this.newRectNode(linkedTextData, layer_4, debugMode);
const textNode = this.newTextNode(resultData[0].result.currentEndText ? resultData[0].result.currentEndText : "");
textNode.x = textNodePartent.width / 2;
textNode.y = textNodePartent.height / 2;
textNodePartent.addChild(textNode)
}
}
// 初始化分数牌 // 初始化分数牌
subScorePanels = []; subScorePanels = [];
...@@ -2988,14 +3083,14 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -2988,14 +3083,14 @@ export default class SceneComponent extends MyCocosSceneComponent {
let validater = () => { let validater = () => {
const result = { const result = {
detail: { detail: {
contentType: CONNECTION, contentType: CONNECTION_CHOICE,
configIndex: contentData.index, configIndex: contentData.index,
contentIndex: -1, contentIndex: -1,
result: { result: {
correctEndIndex: correctConnectIndex, correctEndIndex: correctConnectIndex,
correctEndText: correctConnectTextShow, correctEndText: correctConnectTextShow,
currentEndIndex: currentConnectIndex, currentEndIndex: currentConnectIndex,
currentEndText: currentConnectTextShow, currentEndText: currentConnectIndex >= 0 && contentData.contentList[currentConnectIndex] ? contentData.contentList[currentConnectIndex].linkedShowText : "",
right: true right: true
} }
}, },
......
export const defaultData = {"header_image_url":"http://teach.cdn.ireadabc.com/4a169f047cbec600fcb603d589a83c50.jpg","footer_image_url":"http://teach.cdn.ireadabc.com/665e4c3e6a80563b4c33dd7bbcd18014.jpg","hotZoneConfigArr":[{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"e8bd0458-4d7f-4e30-a5d4-ab5355308f88","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":0},{"uuid":"53977fcc-5801-47a1-9997-de549c1885ed","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":1}],"linkResultShowHotZoneIndex":2},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"60e76541-72bb-4cb7-a5c8-a99ee1be669b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":3},{"uuid":"564ef5ec-4034-4a54-9c39-98c52d08d78d","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":4}],"linkResultShowHotZoneIndex":5},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"8b302db4-c949-45ba-9b1e-1f54af93cb16","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":6},{"uuid":"35ee9c98-6a6e-404a-872e-afeb3de67e61","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":7}],"linkResultShowHotZoneIndex":8},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"e857d604-070a-472e-9e2c-d340dd5193d8","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":9},{"uuid":"aacc4bac-bdbb-4017-a6ca-ec5b8249916f","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":10}],"linkResultShowHotZoneIndex":11},{"hotZoneType":"5","linkHotZoneIndex":12,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"Monday","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":13,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"Tuesday","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":14,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"Thursday","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":15,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"Friday","contentList":[]},{"hotZoneType":"10","linkHotZoneIndex":16,"audio_url":"","score":"2","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"c22752f5-4e15-4605-809d-b7123aafe4c0","text":"are","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"3"},{"uuid":"c37a67bb-b6a8-4d27-8e5b-bd48e5843d25","text":"How","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"1"},{"uuid":"fdd2ab23-12c2-40d1-807c-dc07cd585e80","text":"old","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"2"},{"uuid":"8639a52c-3f03-4b3a-904d-ab42d38ba0f0","text":"you?","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"4"}],"linkResultShowHotZoneIndex":17},{"hotZoneType":"5","linkHotZoneIndex":18,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"I,m","contentList":[],"keyWordMatch":true,"isCaseInsensitive":false},{"hotZoneType":"10","linkHotZoneIndex":19,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"221a3b0d-bdd0-4b26-a133-3f0f08748c20","text":"are","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"2"},{"uuid":"08560d80-5d5e-4363-875b-f1a8d652d16b","text":"How","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"1"},{"uuid":"2a080e55-4704-44cd-a75a-908965dbb233","text":"you?","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"3"}],"linkResultShowHotZoneIndex":20},{"hotZoneType":"5","linkHotZoneIndex":21,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"I,m,fine","contentList":[],"keyWordMatch":true,"isCaseInsensitive":true},{"hotZoneType":"10","linkHotZoneIndex":22,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"16d5c6b4-bbc8-4ccd-924d-4fe273408f80","text":"seven?","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"3"},{"uuid":"e681c7af-cb65-46b3-a3cb-9132bb51a3b9","text":"you","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"2"},{"uuid":"5227c05e-f024-44d6-9074-a08929f2d0d8","text":"Are","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"sortIndex":"1"}],"linkResultShowHotZoneIndex":23},{"hotZoneType":"5","linkHotZoneIndex":24,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"No | Yes","contentList":[],"keyWordMatch":true}],"bgItem":{"url":"http://teach.cdn.ireadabc.com/e2b91a96e1bf8b51f8a20c2b805a4a66.jpg","rect":{"x":0,"y":1659.2541666666666,"width":1351,"height":1677.4916666666666}},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-2-1five","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":400.94,"y":274.02,"width":49.52,"height":29.07}},{"index":1,"itemType":"rect","itemName":"1-2-2four","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":476.84,"y":274.02,"width":57.06,"height":29.07}},{"index":2,"itemType":"rect","itemName":"1-2正确","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":354.64,"y":124.9,"width":32.3,"height":32.3}},{"index":3,"itemType":"rect","itemName":"1-3-1seven","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":637.81,"y":274.02,"width":86.13,"height":29.07}},{"index":4,"itemType":"rect","itemName":"1-3-2six","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":747.64,"y":274.02,"width":43.07,"height":29.07}},{"index":5,"itemType":"rect","itemName":"1-3正确","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":581.82,"y":124.9,"width":32.3,"height":32.3}},{"index":6,"itemType":"rect","itemName":"1-4-1two","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":881.15,"y":274.02,"width":53.83,"height":29.07}},{"index":7,"itemType":"rect","itemName":"1-4-2three","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":960.82,"y":274.02,"width":73.22,"height":29.07}},{"index":8,"itemType":"rect","itemName":"1-4正确","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":823,"y":123.82,"width":32.3,"height":32.3}},{"index":9,"itemType":"rect","itemName":"1-5-1nine","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":1121.79,"y":274.02,"width":61.37,"height":29.07}},{"index":10,"itemType":"rect","itemName":"1-5-2ten","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":1205.23,"y":274.02,"width":51.68,"height":29.07}},{"index":11,"itemType":"rect","itemName":"1-5正确","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":1067.42,"y":123.82,"width":32.3,"height":32.3}},{"index":12,"itemType":"rect","itemName":"2-2Monday","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":404.17,"y":607.26,"width":215.34,"height":32.3}},{"index":13,"itemType":"rect","itemName":"2-3Tuesday","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":428.94,"y":670.78,"width":215.34,"height":32.3}},{"index":14,"itemType":"rect","itemName":"2-5 Thursday","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":433.24,"y":788.14,"width":236.87,"height":32.3}},{"index":15,"itemType":"rect","itemName":"2-6Friday ","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":395.56,"y":847.36,"width":215.34,"height":32.3}},{"index":16,"itemType":"rect","itemName":"How old are you? ","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":600.12,"y":1254.89,"width":398.37,"height":37.69}},{"index":17,"itemType":"rect","itemName":"3-2正确","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":553.83,"y":1257.58,"width":32.3,"height":32.3}},{"index":18,"itemType":"rect","itemName":"3-2文字","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":600.12,"y":1315.18,"width":215.34,"height":37.69}},{"index":19,"itemType":"rect","itemName":"How are you? ","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":600.12,"y":1373.32,"width":323.01,"height":37.69}},{"index":20,"itemType":"rect","itemName":"3-3正确","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":554.91,"y":1376.01,"width":32.3,"height":32.3}},{"index":21,"itemType":"rect","itemName":"3-3文字","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":600.12,"y":1432.55,"width":215.34,"height":37.69}},{"index":22,"itemType":"rect","itemName":"Are you seven?","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":600.12,"y":1491.76,"width":279.94,"height":37.69}},{"index":23,"itemType":"rect","itemName":"3-4正确","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":557.06,"y":1494.46,"width":32.3,"height":32.3}},{"index":24,"itemType":"rect","itemName":"3-4文字","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.05546875,"imgScale":1,"mapScale":1.05546875,"rect":{"x":601.2,"y":1552.06,"width":279.94,"height":37.69}}],"scoreConfigArr":[{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[0,1,2,3,4,5,6,7]},{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[8,9,10,11,12,13]}],"alignMode":"left","ratingSystem":"0"} export const defaultData = {"footer_image_url":"http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg","alignMode":"left","header_image_url":"http://teach.cdn.ireadabc.com/3e5a38c05e69318b60cade381821d106.jpg","bgItem":{"url":"http://teach.cdn.ireadabc.com/93797b71f7f6300e7c3fea252e17423a.jpg","rect":{"x":0,"y":1464.4711111111112,"width":1664,"height":2067.0577777777776}},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1032.32,"y":210.83,"width":193.86,"height":50.88}},{"index":1,"itemType":"rect","itemName":"1-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1342.5,"y":210.83,"width":193.86,"height":50.88}},{"index":2,"itemType":"rect","itemName":"1-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1032.32,"y":282.31,"width":193.86,"height":50.88}},{"index":3,"itemType":"rect","itemName":"1-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1342.5,"y":282.31,"width":193.86,"height":50.88}},{"index":4,"itemType":"rect","itemName":"1-6","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1032.32,"y":355.01,"width":193.86,"height":50.88}},{"index":5,"itemType":"rect","itemName":"1-7","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1032.32,"y":427.71,"width":193.86,"height":50.88}},{"index":6,"itemType":"rect","itemName":"1-8","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1342.5,"y":426.5,"width":193.86,"height":50.88}},{"index":7,"itemType":"rect","itemName":"1-9","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1032.32,"y":499.2,"width":193.86,"height":50.88}},{"index":8,"itemType":"rect","itemName":"2-20","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":590.07,"y":777.87,"width":48.47,"height":48.47}},{"index":9,"itemType":"rect","itemName":"2-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":858.94,"y":773.1,"width":177.26,"height":55.39}},{"index":10,"itemType":"rect","itemName":"2-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1051.36,"y":773.1,"width":55.39,"height":55.39}},{"index":11,"itemType":"rect","itemName":"2-30","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":590.07,"y":848.15,"width":48.47,"height":48.47}},{"index":12,"itemType":"rect","itemName":"2-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":883.42,"y":846.31,"width":121.86,"height":55.39}},{"index":13,"itemType":"rect","itemName":"2-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1027.13,"y":846.31,"width":55.39,"height":55.39}},{"index":14,"itemType":"rect","itemName":"2-40","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":590.07,"y":920.85,"width":48.47,"height":48.47}},{"index":15,"itemType":"rect","itemName":"2-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":909.45,"y":916.8,"width":188.34,"height":55.39}},{"index":16,"itemType":"rect","itemName":"2-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1122.56,"y":916.8,"width":132.94,"height":55.39}},{"index":17,"itemType":"rect","itemName":"3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":929.33,"y":1264.95,"width":193.86,"height":50.88}},{"index":18,"itemType":"rect","itemName":"3-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":929.33,"y":1350.98,"width":193.86,"height":50.88}},{"index":19,"itemType":"rect","itemName":"3-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":929.33,"y":1438.22,"width":193.86,"height":50.88}},{"index":20,"itemType":"rect","itemName":"3-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":929.33,"y":1524.24,"width":193.86,"height":50.88}},{"index":21,"itemType":"rect","itemName":" 4-0","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":30.29,"y":1652.68,"width":60.58,"height":60.58}},{"index":22,"itemType":"rect","itemName":"4-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":670.03,"y":1813.83,"width":60.58,"height":60.58}},{"index":23,"itemType":"rect","itemName":"4-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":769.4,"y":1813.83,"width":60.58,"height":60.58}},{"index":24,"itemType":"rect","itemName":"4-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":603.39,"y":1813.83,"width":60.58,"height":60.58}},{"index":25,"itemType":"rect","itemName":"4-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":670.03,"y":1885.91,"width":60.58,"height":60.58}},{"index":26,"itemType":"rect","itemName":"4-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":769.4,"y":1955.59,"width":60.58,"height":60.58}},{"index":27,"itemType":"rect","itemName":"4-33","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":603.39,"y":1884.71,"width":60.58,"height":60.58}},{"index":28,"itemType":"rect","itemName":"4-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":670.03,"y":1955.59,"width":60.58,"height":60.58}},{"index":29,"itemType":"rect","itemName":"4-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":769.4,"y":1739.91,"width":60.58,"height":60.58}},{"index":30,"itemType":"rect","itemName":"4-43","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":603.39,"y":1955.59,"width":60.58,"height":60.58}},{"index":31,"itemType":"rect","itemName":"1-10","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1342.5,"y":499.2,"width":193.86,"height":50.88}},{"index":32,"itemType":"rect","itemName":"1-test","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1098,"y":1687.53,"width":48,"height":48}},{"index":33,"itemType":"rect","itemName":"2-test","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1164,"y":1689.53,"width":48,"height":48}},{"index":34,"itemType":"rect","itemName":"3-test","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1282,"y":1618.53,"width":48,"height":48}},{"index":35,"itemType":"rect","itemName":"4-test","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1282,"y":1691.53,"width":48,"height":48}},{"index":36,"itemType":"rect","itemName":"5-test","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":1282,"y":1769.53,"width":48,"height":48}},{"index":37,"itemType":"rect","itemName":"Show-Text","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.3,"imgScale":1,"mapScale":1.3,"rect":{"x":732,"y":933.53,"width":200,"height":200}}],"hotZoneConfigArr":[{"hotZoneType":"5","linkHotZoneIndex":0,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"lay","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":1,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"occer","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":2,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ide","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":3,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ike","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":4,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"kate","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":5,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ide","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":6,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"orse","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":7,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"lay","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":31,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ennis","contentList":[]},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"2f54a92f-d499-4daf-ae73-ce2e15e94396","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":9},{"uuid":"2dabe85e-8f0d-4024-851d-e9020b9ea22b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":10}],"linkResultShowHotZoneIndex":8},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"2f54a92f-d499-4daf-ae73-ce2e15e94396","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":12},{"uuid":"2dabe85e-8f0d-4024-851d-e9020b9ea22b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":13}],"linkResultShowHotZoneIndex":11},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"2f54a92f-d499-4daf-ae73-ce2e15e94396","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":15},{"uuid":"2dabe85e-8f0d-4024-851d-e9020b9ea22b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":16}],"linkResultShowHotZoneIndex":14},{"hotZoneType":"0","linkHotZoneIndex":17,"audio_url":"","score":"5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"can","contentList":[{"uuid":"72289426-e75e-4847-b392-a886d8fc9362","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":0,"selectHotZoneIndex":17},{"uuid":"4e657b61-d6b9-4f48-b68c-890d0da5b94c","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":1,"selectHotZoneIndex":18},{"uuid":"5c18d7fd-6cd8-4341-b527-9877f0bc2407","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":1,"selectHotZoneIndex":19},{"uuid":"f8faf9f5-b1b7-4c3e-8e64-f4dc9a57710b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":0,"selectHotZoneIndex":20}],"useSelectOptionList":true,"selectOptionList":[{"text":"can","optionShowText":"can"},{"text":"can't","optionShowText":"can't"}]},{"hotZoneType":"6","linkHotZoneIndex":-1,"audio_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"bcd860e3-460d-4890-8c42-dd28c2c84910","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"b","selectStartHotZoneIndex":22,"selectEndHotZoneIndex":23,"selectEndHotZoneShowIndex":24},{"uuid":"09160a26-c0e9-42cf-88c6-b5ff2fa9aab2","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"d","selectStartHotZoneIndex":25,"selectEndHotZoneIndex":26,"selectEndHotZoneShowIndex":27},{"uuid":"3ae28df1-d0b8-441d-b172-c166c8db54ab","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"a","selectStartHotZoneIndex":28,"selectEndHotZoneIndex":29,"selectEndHotZoneShowIndex":30}],"linkResultShowHotZoneIndex":21},{"hotZoneType":"11","linkHotZoneIndex":33,"connectionPRO_startArr":[],"connectionPRO_endtArr":[],"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"dc2192e8-2686-4f9a-b127-1f5f2b83484f","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"A","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":34},{"uuid":"e74ec058-a73d-4302-a3f9-4d4e6bd0da7d","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"B","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":35},{"uuid":"cc32cad1-ba05-41ad-a148-de37cea09030","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"C","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":36}],"linkResultShowHotZoneIndex":32,"linkHotZoneShowIndex":37}],"scoreConfigArr":[{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]}],"ratingSystem":"0","basicScore":"","lastModify":"2023-07-12T08:26:37.427Z"}
\ No newline at end of file \ No newline at end of file
export const historyData = { export const historyData = {
"dataSaved": { "dataSaved": {
"header_image_url": "http://teach.cdn.ireadabc.com/4a169f047cbec600fcb603d589a83c50.jpg", "footer_image_url": "http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg",
"footer_image_url": "http://teach.cdn.ireadabc.com/665e4c3e6a80563b4c33dd7bbcd18014.jpg", "alignMode": "left",
"hotZoneConfigArr": [ "header_image_url": "http://teach.cdn.ireadabc.com/3e5a38c05e69318b60cade381821d106.jpg",
"bgItem": {
"url": "http://teach.cdn.ireadabc.com/93797b71f7f6300e7c3fea252e17423a.jpg",
"rect": {
"x": 0,
"y": 1464.4711111111112,
"width": 1664,
"height": 2067.0577777777776
}
},
"hotZoneItemArr": [
{ {
"hotZoneType": "3", "index": 0,
"linkHotZoneIndex": -1, "itemType": "rect",
"audio_url": "", "itemName": "1-2",
"score": "1", "fontSize": 50,
"unselectedStyle": "mask", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "", "imgScale": 1,
"contentList": [ "mapScale": 1.3,
{ "rect": {
"uuid": "e8bd0458-4d7f-4e30-a5d4-ab5355308f88", "x": 1032.32,
"text": "", "y": 210.83,
"optionShowText": "", "width": 193.86,
"image_url": "", "height": 50.88
"hotZoneIndex": null, }
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 0
},
{
"uuid": "53977fcc-5801-47a1-9997-de549c1885ed",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 1
}
],
"linkResultShowHotZoneIndex": 2,
"index": 0
}, },
{ {
"hotZoneType": "3", "index": 1,
"linkHotZoneIndex": -1, "itemType": "rect",
"audio_url": "", "itemName": "1-3",
"score": "1", "fontSize": 50,
"unselectedStyle": "mask", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "", "imgScale": 1,
"contentList": [ "mapScale": 1.3,
{ "rect": {
"uuid": "60e76541-72bb-4cb7-a5c8-a99ee1be669b", "x": 1342.5,
"text": "", "y": 210.83,
"optionShowText": "", "width": 193.86,
"image_url": "", "height": 50.88
"hotZoneIndex": null, }
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 3
},
{
"uuid": "564ef5ec-4034-4a54-9c39-98c52d08d78d",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 4
}
],
"linkResultShowHotZoneIndex": 5,
"index": 1
}, },
{ {
"hotZoneType": "3", "index": 2,
"linkHotZoneIndex": -1, "itemType": "rect",
"audio_url": "", "itemName": "1-4",
"score": "1", "fontSize": 50,
"unselectedStyle": "mask", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "", "imgScale": 1,
"contentList": [ "mapScale": 1.3,
{ "rect": {
"uuid": "8b302db4-c949-45ba-9b1e-1f54af93cb16", "x": 1032.32,
"text": "", "y": 282.31,
"optionShowText": "", "width": 193.86,
"image_url": "", "height": 50.88
"hotZoneIndex": null, }
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 6
},
{
"uuid": "35ee9c98-6a6e-404a-872e-afeb3de67e61",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 7
}
],
"linkResultShowHotZoneIndex": 8,
"index": 2
}, },
{ {
"hotZoneType": "3", "index": 3,
"linkHotZoneIndex": -1, "itemType": "rect",
"audio_url": "", "itemName": "1-5",
"score": "1", "fontSize": 50,
"unselectedStyle": "mask", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "", "imgScale": 1,
"contentList": [ "mapScale": 1.3,
{ "rect": {
"uuid": "e857d604-070a-472e-9e2c-d340dd5193d8", "x": 1342.5,
"text": "", "y": 282.31,
"optionShowText": "", "width": 193.86,
"image_url": "", "height": 50.88
"hotZoneIndex": null, }
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 9
},
{
"uuid": "aacc4bac-bdbb-4017-a6ca-ec5b8249916f",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 10
}
],
"linkResultShowHotZoneIndex": 11,
"index": 3
}, },
{ {
"hotZoneType": "5", "index": 4,
"linkHotZoneIndex": 12, "itemType": "rect",
"audio_url": "", "itemName": "1-6",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "Monday", "imgScale": 1,
"contentList": [], "mapScale": 1.3,
"index": 4 "rect": {
"x": 1032.32,
"y": 355.01,
"width": 193.86,
"height": 50.88
}
}, },
{ {
"hotZoneType": "5", "index": 5,
"linkHotZoneIndex": 13, "itemType": "rect",
"audio_url": "", "itemName": "1-7",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "Tuesday", "imgScale": 1,
"contentList": [], "mapScale": 1.3,
"index": 5 "rect": {
"x": 1032.32,
"y": 427.71,
"width": 193.86,
"height": 50.88
}
}, },
{ {
"hotZoneType": "5", "index": 6,
"linkHotZoneIndex": 14, "itemType": "rect",
"audio_url": "", "itemName": "1-8",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "Thursday", "imgScale": 1,
"contentList": [], "mapScale": 1.3,
"index": 6 "rect": {
"x": 1342.5,
"y": 426.5,
"width": 193.86,
"height": 50.88
}
}, },
{ {
"hotZoneType": "5", "index": 7,
"linkHotZoneIndex": 15, "itemType": "rect",
"audio_url": "", "itemName": "1-9",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "Friday", "imgScale": 1,
"contentList": [], "mapScale": 1.3,
"index": 7 "rect": {
"x": 1032.32,
"y": 499.2,
"width": 193.86,
"height": 50.88
}
}, },
{ {
"hotZoneType": "10", "index": 8,
"linkHotZoneIndex": 16, "itemType": "rect",
"audio_url": "", "itemName": "2-20",
"score": "2", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "", "imgScale": 1,
"contentList": [ "mapScale": 1.3,
{ "rect": {
"uuid": "c22752f5-4e15-4605-809d-b7123aafe4c0", "x": 590.07,
"text": "are", "y": 777.87,
"optionShowText": "", "width": 48.47,
"image_url": "", "height": 48.47
"hotZoneIndex": null, }
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "3"
},
{
"uuid": "c37a67bb-b6a8-4d27-8e5b-bd48e5843d25",
"text": "How",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "1"
},
{
"uuid": "fdd2ab23-12c2-40d1-807c-dc07cd585e80",
"text": "old",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "2"
},
{
"uuid": "8639a52c-3f03-4b3a-904d-ab42d38ba0f0",
"text": "you?",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "4"
}
],
"linkResultShowHotZoneIndex": 17,
"index": 8
}, },
{ {
"hotZoneType": "5", "index": 9,
"linkHotZoneIndex": 18, "itemType": "rect",
"audio_url": "", "itemName": "2-21",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "I,m", "imgScale": 1,
"contentList": [], "mapScale": 1.3,
"keyWordMatch": true, "rect": {
"isCaseInsensitive": false, "x": 858.94,
"index": 9 "y": 773.1,
"width": 177.26,
"height": 55.39
}
}, },
{ {
"hotZoneType": "10", "index": 10,
"linkHotZoneIndex": 19, "itemType": "rect",
"audio_url": "", "itemName": "2-22",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "", "imgScale": 1,
"contentList": [ "mapScale": 1.3,
{ "rect": {
"uuid": "221a3b0d-bdd0-4b26-a133-3f0f08748c20", "x": 1051.36,
"text": "are", "y": 773.1,
"optionShowText": "", "width": 55.39,
"image_url": "", "height": 55.39
"hotZoneIndex": null, }
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "2"
},
{
"uuid": "08560d80-5d5e-4363-875b-f1a8d652d16b",
"text": "How",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "1"
},
{
"uuid": "2a080e55-4704-44cd-a75a-908965dbb233",
"text": "you?",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "3"
}
],
"linkResultShowHotZoneIndex": 20,
"index": 10
}, },
{ {
"hotZoneType": "5", "index": 11,
"linkHotZoneIndex": 21, "itemType": "rect",
"audio_url": "", "itemName": "2-30",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "I,m,fine", "imgScale": 1,
"contentList": [], "mapScale": 1.3,
"keyWordMatch": true, "rect": {
"isCaseInsensitive": true, "x": 590.07,
"index": 11 "y": 848.15,
"width": 48.47,
"height": 48.47
}
}, },
{ {
"hotZoneType": "10", "index": 12,
"linkHotZoneIndex": 22, "itemType": "rect",
"audio_url": "", "itemName": "2-31",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "", "imgScale": 1,
"contentList": [ "mapScale": 1.3,
{ "rect": {
"uuid": "16d5c6b4-bbc8-4ccd-924d-4fe273408f80", "x": 883.42,
"text": "seven?", "y": 846.31,
"optionShowText": "", "width": 121.86,
"image_url": "", "height": 55.39
"hotZoneIndex": null, }
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "3"
},
{
"uuid": "e681c7af-cb65-46b3-a3cb-9132bb51a3b9",
"text": "you",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "2"
},
{
"uuid": "5227c05e-f024-44d6-9074-a08929f2d0d8",
"text": "Are",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"sortIndex": "1"
}
],
"linkResultShowHotZoneIndex": 23,
"index": 12
}, },
{ {
"hotZoneType": "5", "index": 13,
"linkHotZoneIndex": 24, "itemType": "rect",
"audio_url": "", "itemName": "2-32",
"score": "1", "fontSize": 50,
"unselectedStyle": "none", "fontName": "BRLNSR_1",
"selectedStyle": "border", "fontColor": "#8f3758",
"rightOrWrongStyleType": "symbol", "fontScale": 1.3,
"inputText": "No | Yes", "imgScale": 1,
"contentList": [], "mapScale": 1.3,
"keyWordMatch": true, "rect": {
"index": 13 "x": 1027.13,
} "y": 846.31,
], "width": 55.39,
"bgItem": { "height": 55.39
"url": "http://teach.cdn.ireadabc.com/e2b91a96e1bf8b51f8a20c2b805a4a66.jpg", }
"rect": { },
"x": 0,
"y": 1659.2541666666666,
"width": 1351,
"height": 1677.4916666666666
}
},
"hotZoneItemArr": [
{ {
"index": 0, "index": 14,
"itemType": "rect", "itemType": "rect",
"itemName": "1-2-1five", "itemName": "2-40",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 400.94, "x": 590.07,
"y": 274.02, "y": 920.85,
"width": 49.52, "width": 48.47,
"height": 29.07 "height": 48.47
} }
}, },
{ {
"index": 1, "index": 15,
"itemType": "rect", "itemType": "rect",
"itemName": "1-2-2four", "itemName": "2-41",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 476.84, "x": 909.45,
"y": 274.02, "y": 916.8,
"width": 57.06, "width": 188.34,
"height": 29.07 "height": 55.39
} }
}, },
{ {
"index": 2, "index": 16,
"itemType": "rect",
"itemName": "2-42",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.3,
"imgScale": 1,
"mapScale": 1.3,
"rect": {
"x": 1122.56,
"y": 916.8,
"width": 132.94,
"height": 55.39
}
},
{
"index": 17,
"itemType": "rect", "itemType": "rect",
"itemName": "1-2正确", "itemName": "3-2",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 354.64, "x": 929.33,
"y": 124.9, "y": 1264.95,
"width": 32.3, "width": 193.86,
"height": 32.3 "height": 50.88
} }
}, },
{ {
"index": 3, "index": 18,
"itemType": "rect", "itemType": "rect",
"itemName": "1-3-1seven", "itemName": "3-3",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 637.81, "x": 929.33,
"y": 274.02, "y": 1350.98,
"width": 86.13, "width": 193.86,
"height": 29.07 "height": 50.88
} }
}, },
{ {
"index": 4, "index": 19,
"itemType": "rect", "itemType": "rect",
"itemName": "1-3-2six", "itemName": "3-4",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 747.64, "x": 929.33,
"y": 274.02, "y": 1438.22,
"width": 43.07, "width": 193.86,
"height": 29.07 "height": 50.88
} }
}, },
{ {
"index": 5, "index": 20,
"itemType": "rect", "itemType": "rect",
"itemName": "1-3正确", "itemName": "3-5",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 581.82, "x": 929.33,
"y": 124.9, "y": 1524.24,
"width": 32.3, "width": 193.86,
"height": 32.3 "height": 50.88
} }
}, },
{ {
"index": 6, "index": 21,
"itemType": "rect", "itemType": "rect",
"itemName": "1-4-1two", "itemName": " 4-0",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 881.15, "x": 30.29,
"y": 274.02, "y": 1652.68,
"width": 53.83, "width": 60.58,
"height": 29.07 "height": 60.58
} }
}, },
{ {
"index": 7, "index": 22,
"itemType": "rect", "itemType": "rect",
"itemName": "1-4-2three", "itemName": "4-21",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 960.82, "x": 670.03,
"y": 274.02, "y": 1813.83,
"width": 73.22, "width": 60.58,
"height": 29.07 "height": 60.58
} }
}, },
{ {
"index": 8, "index": 23,
"itemType": "rect", "itemType": "rect",
"itemName": "1-4正确", "itemName": "4-22",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 823, "x": 769.4,
"y": 123.82, "y": 1813.83,
"width": 32.3, "width": 60.58,
"height": 32.3 "height": 60.58
} }
}, },
{ {
"index": 9, "index": 24,
"itemType": "rect", "itemType": "rect",
"itemName": "1-5-1nine", "itemName": "4-23",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 1121.79, "x": 603.39,
"y": 274.02, "y": 1813.83,
"width": 61.37, "width": 60.58,
"height": 29.07 "height": 60.58
} }
}, },
{ {
"index": 10, "index": 25,
"itemType": "rect", "itemType": "rect",
"itemName": "1-5-2ten", "itemName": "4-31",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 1205.23, "x": 670.03,
"y": 274.02, "y": 1885.91,
"width": 51.68, "width": 60.58,
"height": 29.07 "height": 60.58
} }
}, },
{ {
"index": 11, "index": 26,
"itemType": "rect", "itemType": "rect",
"itemName": "1-5正确", "itemName": "4-32",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 1067.42, "x": 769.4,
"y": 123.82, "y": 1955.59,
"width": 32.3, "width": 60.58,
"height": 32.3 "height": 60.58
} }
}, },
{ {
"index": 12, "index": 27,
"itemType": "rect", "itemType": "rect",
"itemName": "2-2Monday", "itemName": "4-33",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 404.17, "x": 603.39,
"y": 607.26, "y": 1884.71,
"width": 215.34, "width": 60.58,
"height": 32.3 "height": 60.58
} }
}, },
{ {
"index": 13, "index": 28,
"itemType": "rect", "itemType": "rect",
"itemName": "2-3Tuesday", "itemName": "4-41",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 428.94, "x": 670.03,
"y": 670.78, "y": 1955.59,
"width": 215.34, "width": 60.58,
"height": 32.3 "height": 60.58
} }
}, },
{ {
"index": 14, "index": 29,
"itemType": "rect", "itemType": "rect",
"itemName": "2-5 Thursday", "itemName": "4-42",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 433.24, "x": 769.4,
"y": 788.14, "y": 1739.91,
"width": 236.87, "width": 60.58,
"height": 32.3 "height": 60.58
} }
}, },
{ {
"index": 15, "index": 30,
"itemType": "rect", "itemType": "rect",
"itemName": "2-6Friday ", "itemName": "4-43",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 395.56, "x": 603.39,
"y": 847.36, "y": 1955.59,
"width": 215.34, "width": 60.58,
"height": 32.3 "height": 60.58
} }
}, },
{ {
"index": 16, "index": 31,
"itemType": "rect", "itemType": "rect",
"itemName": "How old are you? ", "itemName": "1-10",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 600.12, "x": 1342.5,
"y": 1254.89, "y": 499.2,
"width": 398.37, "width": 193.86,
"height": 37.69 "height": 50.88
} }
}, },
{ {
"index": 17, "index": 32,
"itemType": "rect", "itemType": "rect",
"itemName": "3-2正确", "itemName": "1-test",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 553.83, "x": 1098,
"y": 1257.58, "y": 1687.53,
"width": 32.3, "width": 48,
"height": 32.3 "height": 48
} }
}, },
{ {
"index": 18, "index": 33,
"itemType": "rect", "itemType": "rect",
"itemName": "3-2文字", "itemName": "2-test",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 600.12, "x": 1164,
"y": 1315.18, "y": 1689.53,
"width": 215.34, "width": 48,
"height": 37.69 "height": 48
} }
}, },
{ {
"index": 19, "index": 34,
"itemType": "rect", "itemType": "rect",
"itemName": "How are you? ", "itemName": "3-test",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 600.12, "x": 1282,
"y": 1373.32, "y": 1618.53,
"width": 323.01, "width": 48,
"height": 37.69 "height": 48
} }
}, },
{ {
"index": 20, "index": 35,
"itemType": "rect", "itemType": "rect",
"itemName": "3-3正确", "itemName": "4-test",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 554.91, "x": 1282,
"y": 1376.01, "y": 1691.53,
"width": 32.3, "width": 48,
"height": 32.3 "height": 48
} }
}, },
{ {
"index": 21, "index": 36,
"itemType": "rect", "itemType": "rect",
"itemName": "3-3文字", "itemName": "5-test",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 600.12, "x": 1282,
"y": 1432.55, "y": 1769.53,
"width": 215.34, "width": 48,
"height": 37.69 "height": 48
} }
}, },
{ {
"index": 22, "index": 37,
"itemType": "rect", "itemType": "rect",
"itemName": "Are you seven?", "itemName": "Show-Text",
"fontSize": 50, "fontSize": 50,
"fontName": "BRLNSR_1", "fontName": "BRLNSR_1",
"fontColor": "#8f3758", "fontColor": "#8f3758",
"fontScale": 1.05546875, "fontScale": 1.3,
"imgScale": 1, "imgScale": 1,
"mapScale": 1.05546875, "mapScale": 1.3,
"rect": { "rect": {
"x": 600.12, "x": 732,
"y": 1491.76, "y": 933.53,
"width": 279.94, "width": 200,
"height": 37.69 "height": 200
} }
}
],
"hotZoneConfigArr": [
{
"hotZoneType": "5",
"linkHotZoneIndex": 0,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "lay",
"contentList": [],
"index": 0
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 1,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "occer",
"contentList": [],
"index": 1
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 2,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ide",
"contentList": [],
"index": 2
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 3,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ike",
"contentList": [],
"index": 3
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 4,
"audio_url": "",
"score": "1",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "kate",
"contentList": [],
"index": 4
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 5,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ide",
"contentList": [],
"index": 5
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 6,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "orse",
"contentList": [],
"index": 6
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 7,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "lay",
"contentList": [],
"index": 7
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 31,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ennis",
"contentList": [],
"index": 8
},
{
"hotZoneType": "3",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "1",
"unselectedStyle": "mask",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "",
"contentList": [
{
"uuid": "2f54a92f-d499-4daf-ae73-ce2e15e94396",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 9
},
{
"uuid": "2dabe85e-8f0d-4024-851d-e9020b9ea22b",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 10
}
],
"linkResultShowHotZoneIndex": 8,
"index": 9
},
{
"hotZoneType": "3",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "1",
"unselectedStyle": "mask",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "",
"contentList": [
{
"uuid": "2f54a92f-d499-4daf-ae73-ce2e15e94396",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 12
},
{
"uuid": "2dabe85e-8f0d-4024-851d-e9020b9ea22b",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 13
}
],
"linkResultShowHotZoneIndex": 11,
"index": 10
},
{
"hotZoneType": "3",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "1",
"unselectedStyle": "mask",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "",
"contentList": [
{
"uuid": "2f54a92f-d499-4daf-ae73-ce2e15e94396",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 15
},
{
"uuid": "2dabe85e-8f0d-4024-851d-e9020b9ea22b",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 16
}
],
"linkResultShowHotZoneIndex": 14,
"index": 11
},
{
"hotZoneType": "0",
"linkHotZoneIndex": 17,
"audio_url": "",
"score": "5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "can",
"contentList": [
{
"uuid": "72289426-e75e-4847-b392-a886d8fc9362",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 0,
"selectHotZoneIndex": 17
},
{
"uuid": "4e657b61-d6b9-4f48-b68c-890d0da5b94c",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 1,
"selectHotZoneIndex": 18
},
{
"uuid": "5c18d7fd-6cd8-4341-b527-9877f0bc2407",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 1,
"selectHotZoneIndex": 19
},
{
"uuid": "f8faf9f5-b1b7-4c3e-8e64-f4dc9a57710b",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 0,
"selectHotZoneIndex": 20
}
],
"useSelectOptionList": true,
"selectOptionList": [
{
"text": "can",
"optionShowText": "can"
},
{
"text": "can't",
"optionShowText": "can't"
}
],
"index": 12
}, },
{ {
"index": 23, "hotZoneType": "6",
"itemType": "rect", "linkHotZoneIndex": -1,
"itemName": "3-4正确", "audio_url": "",
"fontSize": 50, "score": "0",
"fontName": "BRLNSR_1", "unselectedStyle": "none",
"fontColor": "#8f3758", "selectedStyle": "border",
"fontScale": 1.05546875, "rightOrWrongStyleType": "symbol",
"imgScale": 1, "inputText": "",
"mapScale": 1.05546875, "contentList": [
"rect": { {
"x": 557.06, "uuid": "bcd860e3-460d-4890-8c42-dd28c2c84910",
"y": 1494.46, "text": "",
"width": 32.3, "optionShowText": "",
"height": 32.3 "image_url": "",
} "hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "b",
"selectStartHotZoneIndex": 22,
"selectEndHotZoneIndex": 23,
"selectEndHotZoneShowIndex": 24
},
{
"uuid": "09160a26-c0e9-42cf-88c6-b5ff2fa9aab2",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "d",
"selectStartHotZoneIndex": 25,
"selectEndHotZoneIndex": 26,
"selectEndHotZoneShowIndex": 27
},
{
"uuid": "3ae28df1-d0b8-441d-b172-c166c8db54ab",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "a",
"selectStartHotZoneIndex": 28,
"selectEndHotZoneIndex": 29,
"selectEndHotZoneShowIndex": 30
}
],
"linkResultShowHotZoneIndex": 21,
"index": 13
}, },
{ {
"index": 24, "hotZoneType": "11",
"itemType": "rect", "linkHotZoneIndex": 33,
"itemName": "3-4文字", "connectionPRO_startArr": [],
"fontSize": 50, "connectionPRO_endtArr": [],
"fontName": "BRLNSR_1", "audio_url": "",
"fontColor": "#8f3758", "video_url": "",
"fontScale": 1.05546875, "score": "0",
"imgScale": 1, "unselectedStyle": "none",
"mapScale": 1.05546875, "selectedStyle": "border",
"rect": { "rightOrWrongStyleType": "symbol",
"x": 601.2, "inputText": "",
"y": 1552.06, "keyWordMatch": false,
"width": 279.94, "isCaseInsensitive": false,
"height": 37.69 "openAnswer": false,
} "useSelectOptionList": false,
"keyWordMatchInOrder": false,
"capitalizedFirstLetter": false,
"notAdaptContraction": false,
"textAlignLeft": false,
"selectOptionList": [],
"contentList": [
{
"uuid": "dc2192e8-2686-4f9a-b127-1f5f2b83484f",
"text": "",
"selectOptionListIndex": "",
"selectOptionListIndexArr": [],
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "A",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectStartHotZoneIndex_1": null,
"selectEndHotZoneIndex_1": null,
"selectStartHotZoneIndex_2": null,
"selectEndHotZoneIndex_2": null,
"inputText": "",
"keyWordMatch": false,
"keyWordMatchInOrder": false,
"isCaseInsensitive": false,
"openAnswer": false,
"capitalizedFirstLetter": false,
"notAdaptContraction": false,
"textAlignLeft": false,
"drawingCheckCorrectColors": [],
"drawingCheckStrictEqual": false,
"painterOnCenter": false,
"oplistCol2": false,
"selectHotZoneIndex": 34
},
{
"uuid": "e74ec058-a73d-4302-a3f9-4d4e6bd0da7d",
"text": "",
"selectOptionListIndex": "",
"selectOptionListIndexArr": [],
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCheck": false,
"linkedShowText": "B",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectStartHotZoneIndex_1": null,
"selectEndHotZoneIndex_1": null,
"selectStartHotZoneIndex_2": null,
"selectEndHotZoneIndex_2": null,
"inputText": "",
"keyWordMatch": false,
"keyWordMatchInOrder": false,
"isCaseInsensitive": false,
"openAnswer": false,
"capitalizedFirstLetter": false,
"notAdaptContraction": false,
"textAlignLeft": false,
"drawingCheckCorrectColors": [],
"drawingCheckStrictEqual": false,
"painterOnCenter": false,
"oplistCol2": false,
"selectHotZoneIndex": 35
},
{
"uuid": "cc32cad1-ba05-41ad-a148-de37cea09030",
"text": "",
"selectOptionListIndex": "",
"selectOptionListIndexArr": [],
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "C",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectStartHotZoneIndex_1": null,
"selectEndHotZoneIndex_1": null,
"selectStartHotZoneIndex_2": null,
"selectEndHotZoneIndex_2": null,
"inputText": "",
"keyWordMatch": false,
"keyWordMatchInOrder": false,
"isCaseInsensitive": false,
"openAnswer": false,
"capitalizedFirstLetter": false,
"notAdaptContraction": false,
"textAlignLeft": false,
"drawingCheckCorrectColors": [],
"drawingCheckStrictEqual": false,
"painterOnCenter": false,
"oplistCol2": false,
"selectHotZoneIndex": 36
}
],
"linkResultShowHotZoneIndex": 32,
"linkHotZoneShowIndex": 37,
"index": 14
} }
], ],
"scoreConfigArr": [ "scoreConfigArr": [
...@@ -908,63 +1183,54 @@ export const historyData = { ...@@ -908,63 +1183,54 @@ export const historyData = {
4, 4,
5, 5,
6, 6,
7 7,
]
},
{
"linkHotZoneIndex": -1,
"linkHotZoneIndexArr": [
8, 8,
9, 9,
10, 10,
11, 11,
12, 12,
13 13,
14,
15,
16
] ]
} }
], ],
"alignMode": "left", "ratingSystem": "0",
"ratingSystem": "0" "basicScore": "",
"lastModify": "2023-07-12T08:26:37.427Z"
}, },
"details": [ "details": [
{ {
"contentType": "3", "contentType": "5",
"configIndex": 0, "configIndex": 0,
"contentIndex": -1, "contentIndex": -1,
"currentSelectIndex": -1, "currentInputText": "",
"currentSelectText": "", "correctText": "lay",
"correctSelectIndex": 0,
"correctSelectText": "",
"right": false "right": false
}, },
{ {
"contentType": "3", "contentType": "5",
"configIndex": 1, "configIndex": 1,
"contentIndex": -1, "contentIndex": -1,
"currentSelectIndex": -1, "currentInputText": "",
"currentSelectText": "", "correctText": "occer",
"correctSelectIndex": 0,
"correctSelectText": "",
"right": false "right": false
}, },
{ {
"contentType": "3", "contentType": "5",
"configIndex": 2, "configIndex": 2,
"contentIndex": -1, "contentIndex": -1,
"currentSelectIndex": -1, "currentInputText": "",
"currentSelectText": "", "correctText": "ide",
"correctSelectIndex": 0,
"correctSelectText": "",
"right": false "right": false
}, },
{ {
"contentType": "3", "contentType": "5",
"configIndex": 3, "configIndex": 3,
"contentIndex": -1, "contentIndex": -1,
"currentSelectIndex": -1, "currentInputText": "",
"currentSelectText": "", "correctText": "ike",
"correctSelectIndex": 1,
"correctSelectText": "",
"right": false "right": false
}, },
{ {
...@@ -972,7 +1238,7 @@ export const historyData = { ...@@ -972,7 +1238,7 @@ export const historyData = {
"configIndex": 4, "configIndex": 4,
"contentIndex": -1, "contentIndex": -1,
"currentInputText": "", "currentInputText": "",
"correctText": "Monday", "correctText": "kate",
"right": false "right": false
}, },
{ {
...@@ -980,7 +1246,7 @@ export const historyData = { ...@@ -980,7 +1246,7 @@ export const historyData = {
"configIndex": 5, "configIndex": 5,
"contentIndex": -1, "contentIndex": -1,
"currentInputText": "", "currentInputText": "",
"correctText": "Tuesday", "correctText": "ide",
"right": false "right": false
}, },
{ {
...@@ -988,7 +1254,7 @@ export const historyData = { ...@@ -988,7 +1254,7 @@ export const historyData = {
"configIndex": 6, "configIndex": 6,
"contentIndex": -1, "contentIndex": -1,
"currentInputText": "", "currentInputText": "",
"correctText": "Thursday", "correctText": "orse",
"right": false "right": false
}, },
{ {
...@@ -996,146 +1262,132 @@ export const historyData = { ...@@ -996,146 +1262,132 @@ export const historyData = {
"configIndex": 7, "configIndex": 7,
"contentIndex": -1, "contentIndex": -1,
"currentInputText": "", "currentInputText": "",
"correctText": "Friday", "correctText": "lay",
"right": false "right": false
}, },
{ {
"contentType": "10", "contentType": "5",
"configIndex": 8, "configIndex": 8,
"contentIndex": -1, "contentIndex": -1,
"optionList": [ "currentInputText": "",
{ "correctText": "ennis",
"word": "are", "right": false
"index": 0,
"sortIndex": "3"
},
{
"word": "How",
"index": 1,
"sortIndex": "1"
},
{
"word": "old",
"index": 2,
"sortIndex": "2"
},
{
"word": "you?",
"index": 3,
"sortIndex": "4"
}
],
"sortedList": [
{
"selected": true,
"currentIndex": 0,
"option": {
"word": "How",
"index": 1,
"sortIndex": "1"
}
},
{
"selected": true,
"currentIndex": 1,
"option": {
"word": "old",
"index": 2,
"sortIndex": "2"
}
},
{
"selected": true,
"currentIndex": 2,
"option": {
"word": "are",
"index": 0,
"sortIndex": "3"
}
},
{
"selected": true,
"currentIndex": 3,
"option": {
"word": "you?",
"index": 3,
"sortIndex": "4"
}
}
],
"right": true
}, },
{ {
"contentType": "5", "contentType": "3",
"configIndex": 9, "configIndex": 9,
"contentIndex": -1, "contentIndex": -1,
"currentInputText": "", "currentSelectIndex": -1,
"correctText": "I,m", "currentSelectText": "",
"correctSelectIndex": 0,
"correctSelectText": "",
"right": false "right": false
}, },
{ {
"contentType": "10", "contentType": "3",
"configIndex": 10, "configIndex": 10,
"contentIndex": -1, "contentIndex": -1,
"optionList": [ "currentSelectIndex": -1,
{ "currentSelectText": "",
"word": "are", "correctSelectIndex": 1,
"index": 0, "correctSelectText": "",
"sortIndex": "2"
},
{
"word": "How",
"index": 1,
"sortIndex": "1"
},
{
"word": "you?",
"index": 2,
"sortIndex": "3"
}
],
"sortedList": [],
"right": false "right": false
}, },
{ {
"contentType": "5", "contentType": "3",
"configIndex": 11, "configIndex": 11,
"contentIndex": -1, "contentIndex": -1,
"currentInputText": "", "currentSelectIndex": -1,
"correctText": "I,m,fine", "currentSelectText": "",
"correctSelectIndex": 1,
"correctSelectText": "",
"right": false
},
{
"contentType": "0",
"configIndex": 12,
"contentIndex": 0,
"currentSelectIndex": null,
"currentSelectText": "",
"correctSelectIndex": 0,
"correctSelectText": "",
"right": false
},
{
"contentType": "0",
"configIndex": 12,
"contentIndex": 1,
"currentSelectIndex": null,
"currentSelectText": "",
"correctSelectIndex": 1,
"correctSelectText": "",
"right": false
},
{
"contentType": "0",
"configIndex": 12,
"contentIndex": 2,
"currentSelectIndex": null,
"currentSelectText": "",
"correctSelectIndex": 2,
"correctSelectText": "",
"right": false "right": false
}, },
{ {
"contentType": "10", "contentType": "0",
"configIndex": 12, "configIndex": 12,
"contentIndex": 3,
"currentSelectIndex": null,
"currentSelectText": "",
"correctSelectIndex": 3,
"correctSelectText": "",
"right": false
},
{
"contentType": "6",
"configIndex": 13,
"contentIndex": -1, "contentIndex": -1,
"optionList": [ "results": [
{ {
"word": "seven?", "startIndex": 0,
"index": 0, "startText": "",
"sortIndex": "3" "correctEndIndex": 0,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
}, },
{ {
"word": "you", "startIndex": 1,
"index": 1, "startText": "",
"sortIndex": "2" "correctEndIndex": 1,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
}, },
{ {
"word": "Are", "startIndex": 2,
"index": 2, "startText": "",
"sortIndex": "1" "correctEndIndex": 2,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
} }
], ]
"sortedList": [],
"right": false
}, },
{ {
"contentType": "5", "contentType": "11",
"configIndex": 13, "configIndex": 14,
"contentIndex": -1, "contentIndex": -1,
"currentInputText": "", "result": {
"correctText": "No | Yes", "correctEndIndex": -1,
"right": false "correctEndText": "",
"currentEndIndex": 1,
"currentEndText": "B",
"right": true
}
} }
], ],
"scoreCconfigArr": [ "scoreCconfigArr": [
...@@ -1149,28 +1401,25 @@ export const historyData = { ...@@ -1149,28 +1401,25 @@ export const historyData = {
4, 4,
5, 5,
6, 6,
7 7,
],
"score": 0
},
{
"linkHotZoneIndex": -1,
"linkHotZoneIndexArr": [
8, 8,
9, 9,
10, 10,
11, 11,
12, 12,
13 13,
14,
15,
16
], ],
"score": 2 "score": 0
} }
], ],
"basicScore": 0, "basicScore": 0,
"totalScore": 2, "totalScore": 0,
"isAllRight": false, "isAllRight": false,
"isAllWrong": false, "isAllWrong": false,
"startTimestamp": 1689127389110, "startTimestamp": 1689151973011,
"submitTimestamp": 1689127406022, "submitTimestamp": 1689151981570,
"answeringTime": 16912 "answeringTime": 8559
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment