Commit cba2428d authored by 李维's avatar 李维

添加纵横字谜游戏历史记录展示

parent 15844363
......@@ -761,7 +761,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
validater = this.setTextInput(configItem, this.data.hotZoneItemArr[configItem.linkHotZoneIndex], isDebug);
this.scoreValidater.push(validater);
break;
// 纵横字谜游戏
// 纵横字谜游戏 [做题 - 显示]
case CROSSWORD_PUZZLE:
validater = this.setCrosswordPuzzleInput(configItem, isDebug);
this.scoreValidater.push(validater);
......@@ -859,6 +859,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
case TEXTINPUT:
this.showTextInput(configItem, resultData);
break;
// 纵横字谜游戏
case CROSSWORD_PUZZLE:
this.showCrosswordPuzzleInput(configItem, resultData);
break;
}
})
......@@ -1283,6 +1287,94 @@ export default class SceneComponent extends MyCocosSceneComponent {
}
}
// 纵横字谜 - 历史记录
showCrosswordPuzzleInput(configItem, resultData) {
const debugMode = false;
const lineLetters = [];
const allCrosswordData = [];
// 该题型需要配置一个显示正确错误符号的热区
const resultIconShowData = this.data.hotZoneItemArr[configItem.linkResultShowHotZoneIndex];
const resultIconRect = this.newRectNode(resultIconShowData, layer_2, debugMode);
// 初始化回显区域 - 可不配置
let endShowNode = null;
let endShowText = null
if(configItem.linkHotZoneShowIndex != null && !isNaN(Number(configItem.linkHotZoneShowIndex)) && Number(configItem.linkHotZoneShowIndex) >= 0) {
const endShowHotZoneData = this.data.hotZoneItemArr[configItem.linkHotZoneShowIndex];
endShowNode = this.newRectNode(endShowHotZoneData, layer_4, debugMode);
endShowText = this.newTextNode("");
endShowText.x = endShowNode.width / 2;
endShowText.y = endShowNode.height / 2;
endShowNode.addChild(endShowText);
}
configItem.contentList.forEach((option, index) => {
if(allCrosswordData[option.selectHotZoneIndex + ""] == undefined) {
allCrosswordData[option.selectHotZoneIndex + ""] = {
inited: false,
rect: null,
border: null,
currentLetter: "",
correctLetter: "",
}
}
const letterData = allCrosswordData[option.selectHotZoneIndex + ""];
lineLetters.push(letterData);
// 如果数据没有被初始化过 则初始化各种实例
if(!letterData.inited) {
letterData.inited = true;
// 存储正确的字符 用于提交时比对
letterData.correctLetter = option.letter;
const hotZoneData = this.data.hotZoneItemArr[option.selectHotZoneIndex];
letterData.rect = this.newRectNode(hotZoneData, layer_4, debugMode);
letterData.decorativeFrame = this.newDecorativeFrame(hotZoneData, layer_1, "#FFFFFF", "#6dbef6", debugMode);
letterData.textNode = this.newTextNode("");
letterData.textNode.x = letterData.rect.width / 2;
letterData.textNode.y = letterData.rect.height / 2;
letterData.rect.addChild(letterData.textNode);
letterData.decorativeFrame.active = false;
}
})
let currentWord = "";
const inputText = resultData[0].inputWord;
if(inputText) {
// 把用户输入的内容填入格子
lineLetters.forEach((letter, index) => {
letter.currentLetter = inputText.charAt(index);
letter.decorativeFrame.active = true;
letter.textNode.getComponent(cc.Label).string = letter.currentLetter == "^" ? "" : letter.currentLetter;
})
} else {
// 把用户输入的内容填入格子
lineLetters.forEach((letter, index) => {
letter.currentLetter = "";
letter.decorativeFrame.active = false;
letter.textNode.getComponent(cc.Label).string = "";
})
}
// 如果设置了回显区域,设置回显字符
if(endShowText != null) {
endShowText.getComponent(cc.Label).string = inputText.replace(/\^/g, " ");
}
// 对错号
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].right) {
resultIconRect.addChild(rightIcon);
} else {
resultIconRect.addChild(errIcon);
}
}
// 初始化分数牌
subScorePanels = [];
totalScorePanel = null;
......@@ -3119,7 +3211,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
result.detail.inputWord = "";
lineLetters.forEach((letter, index) => {
result.detail.correctWord += letter.correctLetter;
result.detail.inputWord += letter.currentLetter;
result.detail.inputWord += letter.currentLetter ? letter.currentLetter : "^";
if(letter.currentLetter != letter.correctLetter) {
result.allRight = false;
result.detail.right = false;
......
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":1565.091111111111,"width":1502,"height":1865.8177777777778}},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":190.3,"width":174.99,"height":45.93}},{"index":1,"itemType":"rect","itemName":"1-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":190.3,"width":174.99,"height":45.93}},{"index":2,"itemType":"rect","itemName":"1-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":254.83,"width":174.99,"height":45.93}},{"index":3,"itemType":"rect","itemName":"1-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":254.83,"width":174.99,"height":45.93}},{"index":4,"itemType":"rect","itemName":"1-6","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":320.45,"width":174.99,"height":45.93}},{"index":5,"itemType":"rect","itemName":"1-7","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":386.07,"width":174.99,"height":45.93}},{"index":6,"itemType":"rect","itemName":"1-8","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":384.98,"width":174.99,"height":45.93}},{"index":7,"itemType":"rect","itemName":"1-9","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":450.6,"width":174.99,"height":45.93}},{"index":8,"itemType":"rect","itemName":"2-20","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":532.62,"y":702.14,"width":43.75,"height":43.75}},{"index":9,"itemType":"rect","itemName":"2-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":775.32,"y":697.83,"width":160,"height":50}},{"index":10,"itemType":"rect","itemName":"2-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":949,"y":697.83,"width":50,"height":50}},{"index":11,"itemType":"rect","itemName":"2-30","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":532.62,"y":765.58,"width":43.75,"height":43.75}},{"index":12,"itemType":"rect","itemName":"2-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":797.41,"y":763.92,"width":110,"height":50}},{"index":13,"itemType":"rect","itemName":"2-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":927.13,"y":763.92,"width":50,"height":50}},{"index":14,"itemType":"rect","itemName":"2-40","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":532.62,"y":831.2,"width":43.75,"height":43.75}},{"index":15,"itemType":"rect","itemName":"2-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":820.91,"y":827.54,"width":170,"height":50}},{"index":16,"itemType":"rect","itemName":"2-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1013.27,"y":827.54,"width":120,"height":50}},{"index":17,"itemType":"rect","itemName":"3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1141.8,"width":174.99,"height":45.93}},{"index":18,"itemType":"rect","itemName":"3-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1219.45,"width":174.99,"height":45.93}},{"index":19,"itemType":"rect","itemName":"3-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1298.2,"width":174.99,"height":45.93}},{"index":20,"itemType":"rect","itemName":"3-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1375.85,"width":174.99,"height":45.93}},{"index":21,"itemType":"rect","itemName":" 4-0","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":27.34,"y":1491.78,"width":54.68,"height":54.68}},{"index":22,"itemType":"rect","itemName":"4-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":604.8,"y":1637.24,"width":54.68,"height":54.68}},{"index":23,"itemType":"rect","itemName":"4-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":694.49,"y":1637.24,"width":54.68,"height":54.68}},{"index":24,"itemType":"rect","itemName":"4-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":544.65,"y":1637.24,"width":54.68,"height":54.68}},{"index":25,"itemType":"rect","itemName":"4-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":604.8,"y":1702.31,"width":54.68,"height":54.68}},{"index":26,"itemType":"rect","itemName":"4-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":694.49,"y":1765.2,"width":54.68,"height":54.68}},{"index":27,"itemType":"rect","itemName":"4-33","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":544.65,"y":1701.22,"width":54.68,"height":54.68}},{"index":28,"itemType":"rect","itemName":"4-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":604.8,"y":1765.2,"width":54.68,"height":54.68}},{"index":29,"itemType":"rect","itemName":"4-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":694.49,"y":1570.52,"width":54.68,"height":54.68}},{"index":30,"itemType":"rect","itemName":"4-43","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":544.65,"y":1765.2,"width":54.68,"height":54.68}},{"index":31,"itemType":"rect","itemName":"1-10","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":450.6,"width":174.99,"height":45.93}}],"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}],"scoreConfigArr":[{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]}],"ratingSystem":"0"}
\ No newline at end of file
export const defaultData = {"footer_image_url":"http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg","alignMode":"left","header_image_url":"http://teach.cdn.ireadabc.com/083720132dfa2d2da2b7c3d9bb572224.jpg","bgItem":{"url":"http://teach.cdn.ireadabc.com/bd12a6c02d07c8a1b4500172651e75f5.jpg","rect":{"x":0,"y":1586.3694444444445,"width":1502,"height":1823.2611111111112}},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":348.76,"y":284.09,"width":39.56,"height":39.56}},{"index":1,"itemType":"rect","itemName":"1-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":348.76,"y":325.86,"width":39.56,"height":39.56}},{"index":2,"itemType":"rect","itemName":"1-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":348.76,"y":366.52,"width":39.56,"height":39.56}},{"index":3,"itemType":"rect","itemName":"1-24","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":348.76,"y":408.28,"width":39.56,"height":39.56}},{"index":4,"itemType":"rect","itemName":"1-25","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":348.76,"y":450.05,"width":39.56,"height":39.56}},{"index":5,"itemType":"rect","itemName":"1-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":390.52,"y":284.09,"width":39.56,"height":39.56}},{"index":6,"itemType":"rect","itemName":"1-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":432.48,"y":284.09,"width":39.56,"height":39.56}},{"index":7,"itemType":"rect","itemName":"1-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":183.9,"y":366.52,"width":39.56,"height":39.56}},{"index":8,"itemType":"rect","itemName":"1-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":183.9,"y":408.28,"width":39.56,"height":39.56}},{"index":9,"itemType":"rect","itemName":"1-51","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":225.67,"y":408.28,"width":39.56,"height":39.56}},{"index":10,"itemType":"rect","itemName":"1-52","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":267.43,"y":408.28,"width":39.56,"height":39.56}},{"index":11,"itemType":"rect","itemName":"1-53","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":308.1,"y":408.28,"width":39.56,"height":39.56}},{"index":12,"itemType":"rect","itemName":"1-54","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":390.52,"y":408.28,"width":39.56,"height":39.56}},{"index":13,"itemType":"rect","itemName":"1-55","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":431.19,"y":408.28,"width":39.56,"height":39.56}},{"index":14,"itemType":"rect","itemName":" 2-0","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":45.43,"y":554.45,"width":43.96,"height":43.96}},{"index":15,"itemType":"rect","itemName":"2-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1313.7,"y":618.19,"width":43.96,"height":43.96}},{"index":16,"itemType":"rect","itemName":"2-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":899.37,"y":763.26,"width":43.96,"height":43.96}},{"index":17,"itemType":"rect","itemName":"2-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1363.16,"y":617.1,"width":43.96,"height":43.96}},{"index":18,"itemType":"rect","itemName":"2-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":482.83,"y":780.85,"width":43.96,"height":43.96}},{"index":19,"itemType":"rect","itemName":"2-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":657.58,"y":580.82,"width":43.96,"height":43.96}},{"index":20,"itemType":"rect","itemName":"2-33","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":433.39,"y":780.85,"width":43.96,"height":43.96}},{"index":21,"itemType":"rect","itemName":"2-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1312.59,"y":780.85,"width":43.96,"height":43.96}},{"index":22,"itemType":"rect","itemName":"2-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":899.37,"y":580.82,"width":43.96,"height":43.96}},{"index":23,"itemType":"rect","itemName":"2-43","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1363.16,"y":780.85,"width":43.96,"height":43.96}},{"index":24,"itemType":"rect","itemName":"2-2a","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1075.47,"y":668.58,"width":240,"height":39.56}},{"index":25,"itemType":"rect","itemName":"2-3a","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":164.48,"y":833.64,"width":179.99,"height":39.56}},{"index":26,"itemType":"rect","itemName":"2-4a","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1062.19,"y":833.64,"width":140.01,"height":39.56}},{"index":27,"itemType":"rect","itemName":" 3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":640,"y":1211.66,"width":109.9,"height":43.96}},{"index":28,"itemType":"rect","itemName":"3-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":965.31,"y":1211.66,"width":109.9,"height":43.96}},{"index":29,"itemType":"rect","itemName":"3-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1290.61,"y":1211.66,"width":109.9,"height":43.96}},{"index":30,"itemType":"rect","itemName":" 4-0","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":47.63,"y":1360.03,"width":43.96,"height":43.96}},{"index":31,"itemType":"rect","itemName":"4-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":564.17,"y":1498.5,"width":43.96,"height":43.96}},{"index":32,"itemType":"rect","itemName":"4-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":780.67,"y":1436.96,"width":43.96,"height":43.96}},{"index":33,"itemType":"rect","itemName":"4-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":514.71,"y":1498.5,"width":43.96,"height":43.96}},{"index":34,"itemType":"rect","itemName":"4-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":564.17,"y":1560.05,"width":43.96,"height":43.96}},{"index":35,"itemType":"rect","itemName":"4-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":780.67,"y":1686.43,"width":43.96,"height":43.96}},{"index":36,"itemType":"rect","itemName":"4-33","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":514.71,"y":1560.05,"width":43.96,"height":43.96}},{"index":37,"itemType":"rect","itemName":"4-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":564.17,"y":1623.79,"width":43.96,"height":43.96}},{"index":38,"itemType":"rect","itemName":"4-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":780.67,"y":1560.05,"width":43.96,"height":43.96}},{"index":39,"itemType":"rect","itemName":"4-43","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":514.71,"y":1623.79,"width":43.96,"height":43.96}},{"index":40,"itemType":"rect","itemName":"4-51","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":564.17,"y":1686.43,"width":43.96,"height":43.96}},{"index":41,"itemType":"rect","itemName":"4-52","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":780.67,"y":1623.79,"width":43.96,"height":43.96}},{"index":42,"itemType":"rect","itemName":"4-53","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":514.71,"y":1686.43,"width":43.96,"height":43.96}},{"index":43,"itemType":"rect","itemName":"4-61","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":564.17,"y":1747.98,"width":43.96,"height":43.96}},{"index":44,"itemType":"rect","itemName":"4-62","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":780.67,"y":1747.98,"width":43.96,"height":43.96}},{"index":45,"itemType":"rect","itemName":"4-63","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":514.71,"y":1747.98,"width":43.96,"height":43.96}},{"index":46,"itemType":"rect","itemName":"1-20","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":348.76,"y":203.87,"width":39.56,"height":39.56}},{"index":47,"itemType":"rect","itemName":"1-30","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":267.43,"y":284.09,"width":39.56,"height":39.56}},{"index":48,"itemType":"rect","itemName":"1-40","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":183.9,"y":284.09,"width":39.56,"height":39.56}},{"index":49,"itemType":"rect","itemName":"1-50","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":103.68,"y":408.28,"width":39.56,"height":39.56}},{"index":50,"itemType":"rect","itemName":"1-33","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":473.14,"y":284.09,"width":39.56,"height":39.56}}],"hotZoneConfigArr":[{"hotZoneType":"9","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"69bac506-7417-4949-b45e-1bcd08474e90","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":0,"letter":"m"},{"uuid":"f1c9b0a5-541a-4d6c-8ec4-699d57f9a224","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":1,"letter":"u"},{"uuid":"1cc0fd16-3956-475c-aa37-7567be2f2b55","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":2,"letter":"s"},{"uuid":"00f09d34-a9b5-4c4b-acba-5d7b9fe7a0fc","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":3,"letter":"i"},{"uuid":"4425a440-1d7d-4c5e-9248-99ad8eabec91","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":4,"letter":"c"}],"linkResultShowHotZoneIndex":46},{"hotZoneType":"9","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"0be0a2fd-030a-4f38-9ebb-29f8f697188d","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":0,"letter":"m"},{"uuid":"10b69a20-26f0-4313-b563-d471ba4853d0","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":5,"letter":"a"},{"uuid":"8c97e025-cb70-4f4a-922d-75f819e10626","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":6,"letter":"t"},{"uuid":"5e2ad2e4-ff0d-4929-99bb-2f89ea45b53c","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":50,"letter":"h"}],"linkResultShowHotZoneIndex":47},{"hotZoneType":"9","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"0be0a2fd-030a-4f38-9ebb-29f8f697188d","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":7,"letter":"P"},{"uuid":"10b69a20-26f0-4313-b563-d471ba4853d0","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":8,"letter":"E"}],"linkResultShowHotZoneIndex":48},{"hotZoneType":"9","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"0be0a2fd-030a-4f38-9ebb-29f8f697188d","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":8,"letter":"E"},{"uuid":"10b69a20-26f0-4313-b563-d471ba4853d0","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":9,"letter":"n"},{"uuid":"42e2269b-dd9d-4988-8a2f-f65698175944","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":10,"letter":"g"},{"uuid":"49731ad6-eeee-450a-b7e0-a1556c474f6e","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":11,"letter":"l"},{"uuid":"4f54b246-d89f-465e-b353-2b19b87d5310","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":3,"letter":"i"},{"uuid":"386f4dc2-35a5-41e0-a324-51a01d2b94f2","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":12,"letter":"s"},{"uuid":"1462a6c8-cd47-404d-8707-d0246351e7ee","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":13,"letter":"h"}],"linkResultShowHotZoneIndex":49},{"hotZoneType":"5","linkHotZoneIndex":24,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"computer room","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":26,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"field","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":25,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"art room","contentList":[]},{"hotZoneType":"6","linkHotZoneIndex":-1,"audio_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"cca81944-c90d-4166-8c1a-3d937b8d80ef","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0.5","isCorrect":false,"isCheck":false,"linkedShowText":"d","selectStartHotZoneIndex":15,"selectEndHotZoneIndex":16,"selectEndHotZoneShowIndex":17},{"uuid":"2cee0d75-7631-4b0f-82e5-fbfd7992a806","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0.5","isCorrect":false,"isCheck":false,"linkedShowText":"a","selectStartHotZoneIndex":18,"selectEndHotZoneIndex":19,"selectEndHotZoneShowIndex":20},{"uuid":"59388b0b-2fd5-407c-bc7a-c24d0a1933a7","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0.5","isCorrect":false,"isCheck":false,"linkedShowText":"b","selectStartHotZoneIndex":21,"selectEndHotZoneIndex":22,"selectEndHotZoneShowIndex":23}],"linkResultShowHotZoneIndex":14},{"hotZoneType":"0","linkHotZoneIndex":27,"audio_url":"","score":"5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"their","contentList":[{"uuid":"a3410857-c7e7-40c8-9cb5-20cdb4175b1b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":1,"selectHotZoneIndex":27},{"uuid":"4652e686-7bb5-45d2-a80d-813e0c684b4b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":1,"selectHotZoneIndex":28},{"uuid":"fea9518c-8987-4b77-a369-1eeac1c8ab98","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":0,"selectHotZoneIndex":29}],"useSelectOptionList":true,"selectOptionList":[{"text":"our","optionShowText":"our"},{"text":"their","optionShowText":"their"}]},{"hotZoneType":"6","linkHotZoneIndex":-1,"audio_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"9f296ed9-48ec-4b83-a4b1-70f3aea6ccaa","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"e","selectStartHotZoneIndex":34,"selectEndHotZoneIndex":35,"selectEndHotZoneShowIndex":36},{"uuid":"cf9556f9-d579-46fc-8743-9bee998be0d0","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"c","selectStartHotZoneIndex":37,"selectEndHotZoneIndex":38,"selectEndHotZoneShowIndex":39},{"uuid":"366dc955-8193-4301-8471-77da23e7eb26","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"d","selectStartHotZoneIndex":40,"selectEndHotZoneIndex":41,"selectEndHotZoneShowIndex":42},{"uuid":"867296d6-e980-4e0f-9d8f-f270172daac0","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"f","selectStartHotZoneIndex":43,"selectEndHotZoneIndex":44,"selectEndHotZoneShowIndex":45},{"uuid":"813397f8-edaf-4d46-b594-1b2be9fbcdd8","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"a","selectStartHotZoneIndex":31,"selectEndHotZoneIndex":32,"selectEndHotZoneShowIndex":33}],"linkResultShowHotZoneIndex":30}],"scoreConfigArr":[{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[0,1,2,3,4,5,6,7,8,9,10,11]}],"ratingSystem":"0"}
\ No newline at end of file
......@@ -2,21 +2,21 @@ export const historyData = {
"dataSaved": {
"footer_image_url": "http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg",
"alignMode": "left",
"header_image_url": "http://teach.cdn.ireadabc.com/3e5a38c05e69318b60cade381821d106.jpg",
"header_image_url": "http://teach.cdn.ireadabc.com/083720132dfa2d2da2b7c3d9bb572224.jpg",
"bgItem": {
"url": "http://teach.cdn.ireadabc.com/93797b71f7f6300e7c3fea252e17423a.jpg",
"url": "http://teach.cdn.ireadabc.com/bd12a6c02d07c8a1b4500172651e75f5.jpg",
"rect": {
"x": 0,
"y": 1565.091111111111,
"y": 1586.3694444444445,
"width": 1502,
"height": 1865.8177777777778
"height": 1823.2611111111112
}
},
"hotZoneItemArr": [
{
"index": 0,
"itemType": "rect",
"itemName": "1-2",
"itemName": "1-21",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -24,16 +24,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 931.82,
"y": 190.3,
"width": 174.99,
"height": 45.93
"x": 348.76,
"y": 284.09,
"width": 39.56,
"height": 39.56
}
},
{
"index": 1,
"itemType": "rect",
"itemName": "1-3",
"itemName": "1-22",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -41,16 +41,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 1211.8,
"y": 190.3,
"width": 174.99,
"height": 45.93
"x": 348.76,
"y": 325.86,
"width": 39.56,
"height": 39.56
}
},
{
"index": 2,
"itemType": "rect",
"itemName": "1-4",
"itemName": "1-23",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -58,16 +58,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 931.82,
"y": 254.83,
"width": 174.99,
"height": 45.93
"x": 348.76,
"y": 366.52,
"width": 39.56,
"height": 39.56
}
},
{
"index": 3,
"itemType": "rect",
"itemName": "1-5",
"itemName": "1-24",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -75,16 +75,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 1211.8,
"y": 254.83,
"width": 174.99,
"height": 45.93
"x": 348.76,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 4,
"itemType": "rect",
"itemName": "1-6",
"itemName": "1-25",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -92,16 +92,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 931.82,
"y": 320.45,
"width": 174.99,
"height": 45.93
"x": 348.76,
"y": 450.05,
"width": 39.56,
"height": 39.56
}
},
{
"index": 5,
"itemType": "rect",
"itemName": "1-7",
"itemName": "1-31",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -109,16 +109,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 931.82,
"y": 386.07,
"width": 174.99,
"height": 45.93
"x": 390.52,
"y": 284.09,
"width": 39.56,
"height": 39.56
}
},
{
"index": 6,
"itemType": "rect",
"itemName": "1-8",
"itemName": "1-32",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -126,16 +126,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 1211.8,
"y": 384.98,
"width": 174.99,
"height": 45.93
"x": 432.48,
"y": 284.09,
"width": 39.56,
"height": 39.56
}
},
{
"index": 7,
"itemType": "rect",
"itemName": "1-9",
"itemName": "1-41",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -143,16 +143,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 931.82,
"y": 450.6,
"width": 174.99,
"height": 45.93
"x": 183.9,
"y": 366.52,
"width": 39.56,
"height": 39.56
}
},
{
"index": 8,
"itemType": "rect",
"itemName": "2-20",
"itemName": "1-42",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -160,16 +160,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 532.62,
"y": 702.14,
"width": 43.75,
"height": 43.75
"x": 183.9,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 9,
"itemType": "rect",
"itemName": "2-21",
"itemName": "1-51",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -177,16 +177,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 775.32,
"y": 697.83,
"width": 160,
"height": 50
"x": 225.67,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 10,
"itemType": "rect",
"itemName": "2-22",
"itemName": "1-52",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -194,16 +194,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 949,
"y": 697.83,
"width": 50,
"height": 50
"x": 267.43,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 11,
"itemType": "rect",
"itemName": "2-30",
"itemName": "1-53",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -211,16 +211,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 532.62,
"y": 765.58,
"width": 43.75,
"height": 43.75
"x": 308.1,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 12,
"itemType": "rect",
"itemName": "2-31",
"itemName": "1-54",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -228,16 +228,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 797.41,
"y": 763.92,
"width": 110,
"height": 50
"x": 390.52,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 13,
"itemType": "rect",
"itemName": "2-32",
"itemName": "1-55",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -245,16 +245,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 927.13,
"y": 763.92,
"width": 50,
"height": 50
"x": 431.19,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 14,
"itemType": "rect",
"itemName": "2-40",
"itemName": " 2-0",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -262,16 +262,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 532.62,
"y": 831.2,
"width": 43.75,
"height": 43.75
"x": 45.43,
"y": 554.45,
"width": 43.96,
"height": 43.96
}
},
{
"index": 15,
"itemType": "rect",
"itemName": "2-41",
"itemName": "2-21",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -279,16 +279,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 820.91,
"y": 827.54,
"width": 170,
"height": 50
"x": 1313.7,
"y": 618.19,
"width": 43.96,
"height": 43.96
}
},
{
"index": 16,
"itemType": "rect",
"itemName": "2-42",
"itemName": "2-22",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -296,16 +296,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 1013.27,
"y": 827.54,
"width": 120,
"height": 50
"x": 899.37,
"y": 763.26,
"width": 43.96,
"height": 43.96
}
},
{
"index": 17,
"itemType": "rect",
"itemName": "3-2",
"itemName": "2-23",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -313,16 +313,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 838.85,
"y": 1141.8,
"width": 174.99,
"height": 45.93
"x": 1363.16,
"y": 617.1,
"width": 43.96,
"height": 43.96
}
},
{
"index": 18,
"itemType": "rect",
"itemName": "3-3",
"itemName": "2-31",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -330,16 +330,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 838.85,
"y": 1219.45,
"width": 174.99,
"height": 45.93
"x": 482.83,
"y": 780.85,
"width": 43.96,
"height": 43.96
}
},
{
"index": 19,
"itemType": "rect",
"itemName": "3-4",
"itemName": "2-32",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -347,16 +347,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 838.85,
"y": 1298.2,
"width": 174.99,
"height": 45.93
"x": 657.58,
"y": 580.82,
"width": 43.96,
"height": 43.96
}
},
{
"index": 20,
"itemType": "rect",
"itemName": "3-5",
"itemName": "2-33",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -364,16 +364,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 838.85,
"y": 1375.85,
"width": 174.99,
"height": 45.93
"x": 433.39,
"y": 780.85,
"width": 43.96,
"height": 43.96
}
},
{
"index": 21,
"itemType": "rect",
"itemName": " 4-0",
"itemName": "2-41",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -381,16 +381,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 27.34,
"y": 1491.78,
"width": 54.68,
"height": 54.68
"x": 1312.59,
"y": 780.85,
"width": 43.96,
"height": 43.96
}
},
{
"index": 22,
"itemType": "rect",
"itemName": "4-21",
"itemName": "2-42",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -398,16 +398,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 604.8,
"y": 1637.24,
"width": 54.68,
"height": 54.68
"x": 899.37,
"y": 580.82,
"width": 43.96,
"height": 43.96
}
},
{
"index": 23,
"itemType": "rect",
"itemName": "4-22",
"itemName": "2-43",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -415,16 +415,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 694.49,
"y": 1637.24,
"width": 54.68,
"height": 54.68
"x": 1363.16,
"y": 780.85,
"width": 43.96,
"height": 43.96
}
},
{
"index": 24,
"itemType": "rect",
"itemName": "4-23",
"itemName": "2-2a",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -432,16 +432,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 544.65,
"y": 1637.24,
"width": 54.68,
"height": 54.68
"x": 1075.47,
"y": 668.58,
"width": 240,
"height": 39.56
}
},
{
"index": 25,
"itemType": "rect",
"itemName": "4-31",
"itemName": "2-3a",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -449,16 +449,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 604.8,
"y": 1702.31,
"width": 54.68,
"height": 54.68
"x": 164.48,
"y": 833.64,
"width": 179.99,
"height": 39.56
}
},
{
"index": 26,
"itemType": "rect",
"itemName": "4-32",
"itemName": "2-4a",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -466,16 +466,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 694.49,
"y": 1765.2,
"width": 54.68,
"height": 54.68
"x": 1062.19,
"y": 833.64,
"width": 140.01,
"height": 39.56
}
},
{
"index": 27,
"itemType": "rect",
"itemName": "4-33",
"itemName": " 3-2",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -483,16 +483,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 544.65,
"y": 1701.22,
"width": 54.68,
"height": 54.68
"x": 640,
"y": 1211.66,
"width": 109.9,
"height": 43.96
}
},
{
"index": 28,
"itemType": "rect",
"itemName": "4-41",
"itemName": "3-3",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -500,16 +500,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 604.8,
"y": 1765.2,
"width": 54.68,
"height": 54.68
"x": 965.31,
"y": 1211.66,
"width": 109.9,
"height": 43.96
}
},
{
"index": 29,
"itemType": "rect",
"itemName": "4-42",
"itemName": "3-4",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -517,16 +517,16 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 694.49,
"y": 1570.52,
"width": 54.68,
"height": 54.68
"x": 1290.61,
"y": 1211.66,
"width": 109.9,
"height": 43.96
}
},
{
"index": 30,
"itemType": "rect",
"itemName": "4-43",
"itemName": " 4-0",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -534,16 +534,271 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 544.65,
"y": 1765.2,
"width": 54.68,
"height": 54.68
"x": 47.63,
"y": 1360.03,
"width": 43.96,
"height": 43.96
}
},
{
"index": 31,
"itemType": "rect",
"itemName": "1-10",
"itemName": "4-21",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 564.17,
"y": 1498.5,
"width": 43.96,
"height": 43.96
}
},
{
"index": 32,
"itemType": "rect",
"itemName": "4-22",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 780.67,
"y": 1436.96,
"width": 43.96,
"height": 43.96
}
},
{
"index": 33,
"itemType": "rect",
"itemName": "4-23",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 514.71,
"y": 1498.5,
"width": 43.96,
"height": 43.96
}
},
{
"index": 34,
"itemType": "rect",
"itemName": "4-31",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 564.17,
"y": 1560.05,
"width": 43.96,
"height": 43.96
}
},
{
"index": 35,
"itemType": "rect",
"itemName": "4-32",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 780.67,
"y": 1686.43,
"width": 43.96,
"height": 43.96
}
},
{
"index": 36,
"itemType": "rect",
"itemName": "4-33",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 514.71,
"y": 1560.05,
"width": 43.96,
"height": 43.96
}
},
{
"index": 37,
"itemType": "rect",
"itemName": "4-41",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 564.17,
"y": 1623.79,
"width": 43.96,
"height": 43.96
}
},
{
"index": 38,
"itemType": "rect",
"itemName": "4-42",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 780.67,
"y": 1560.05,
"width": 43.96,
"height": 43.96
}
},
{
"index": 39,
"itemType": "rect",
"itemName": "4-43",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 514.71,
"y": 1623.79,
"width": 43.96,
"height": 43.96
}
},
{
"index": 40,
"itemType": "rect",
"itemName": "4-51",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 564.17,
"y": 1686.43,
"width": 43.96,
"height": 43.96
}
},
{
"index": 41,
"itemType": "rect",
"itemName": "4-52",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 780.67,
"y": 1623.79,
"width": 43.96,
"height": 43.96
}
},
{
"index": 42,
"itemType": "rect",
"itemName": "4-53",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 514.71,
"y": 1686.43,
"width": 43.96,
"height": 43.96
}
},
{
"index": 43,
"itemType": "rect",
"itemName": "4-61",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 564.17,
"y": 1747.98,
"width": 43.96,
"height": 43.96
}
},
{
"index": 44,
"itemType": "rect",
"itemName": "4-62",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 780.67,
"y": 1747.98,
"width": 43.96,
"height": 43.96
}
},
{
"index": 45,
"itemType": "rect",
"itemName": "4-63",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 514.71,
"y": 1747.98,
"width": 43.96,
"height": 43.96
}
},
{
"index": 46,
"itemType": "rect",
"itemName": "1-20",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
......@@ -551,149 +806,282 @@ export const historyData = {
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 1211.8,
"y": 450.6,
"width": 174.99,
"height": 45.93
"x": 348.76,
"y": 203.87,
"width": 39.56,
"height": 39.56
}
},
{
"index": 47,
"itemType": "rect",
"itemName": "1-30",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 267.43,
"y": 284.09,
"width": 39.56,
"height": 39.56
}
},
{
"index": 48,
"itemType": "rect",
"itemName": "1-40",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 183.9,
"y": 284.09,
"width": 39.56,
"height": 39.56
}
},
{
"index": 49,
"itemType": "rect",
"itemName": "1-50",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 103.68,
"y": 408.28,
"width": 39.56,
"height": 39.56
}
},
{
"index": 50,
"itemType": "rect",
"itemName": "1-33",
"fontSize": 50,
"fontName": "BRLNSR_1",
"fontColor": "#8f3758",
"fontScale": 1.1734375,
"imgScale": 1,
"mapScale": 1.1734375,
"rect": {
"x": 473.14,
"y": 284.09,
"width": 39.56,
"height": 39.56
}
}
],
"hotZoneConfigArr": [
{
"hotZoneType": "5",
"linkHotZoneIndex": 0,
"hotZoneType": "9",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "0.5",
"score": "1",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "lay",
"contentList": [],
"index": 0
"inputText": "",
"contentList": [
{
"uuid": "69bac506-7417-4949-b45e-1bcd08474e90",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 0,
"letter": "m"
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 1,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "occer",
"contentList": [],
"index": 1
"uuid": "f1c9b0a5-541a-4d6c-8ec4-699d57f9a224",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 1,
"letter": "u"
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 2,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ide",
"contentList": [],
"index": 2
"uuid": "1cc0fd16-3956-475c-aa37-7567be2f2b55",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 2,
"letter": "s"
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 3,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ike",
"contentList": [],
"index": 3
"uuid": "00f09d34-a9b5-4c4b-acba-5d7b9fe7a0fc",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 3,
"letter": "i"
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 4,
"audio_url": "",
"score": "1",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "kate",
"contentList": [],
"index": 4
"uuid": "4425a440-1d7d-4c5e-9248-99ad8eabec91",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 4,
"letter": "c"
}
],
"linkResultShowHotZoneIndex": 46,
"index": 0
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 5,
"hotZoneType": "9",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "0.5",
"score": "1",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ide",
"contentList": [],
"index": 5
"inputText": "",
"contentList": [
{
"uuid": "0be0a2fd-030a-4f38-9ebb-29f8f697188d",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 0,
"letter": "m"
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 6,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "orse",
"contentList": [],
"index": 6
"uuid": "10b69a20-26f0-4313-b563-d471ba4853d0",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 5,
"letter": "a"
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 7,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "lay",
"contentList": [],
"index": 7
"uuid": "8c97e025-cb70-4f4a-922d-75f819e10626",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 6,
"letter": "t"
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 31,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "ennis",
"contentList": [],
"index": 8
"uuid": "5e2ad2e4-ff0d-4929-99bb-2f89ea45b53c",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 50,
"letter": "h"
}
],
"linkResultShowHotZoneIndex": 47,
"index": 1
},
{
"hotZoneType": "3",
"hotZoneType": "9",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "1",
"unselectedStyle": "mask",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "",
"contentList": [
{
"uuid": "2f54a92f-d499-4daf-ae73-ce2e15e94396",
"uuid": "0be0a2fd-030a-4f38-9ebb-29f8f697188d",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 9
"selectHotZoneIndex": 7,
"letter": "P"
},
{
"uuid": "2dabe85e-8f0d-4024-851d-e9020b9ea22b",
"uuid": "10b69a20-26f0-4313-b563-d471ba4853d0",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -705,24 +1093,25 @@ export const historyData = {
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 10
"selectHotZoneIndex": 8,
"letter": "E"
}
],
"linkResultShowHotZoneIndex": 8,
"index": 9
"linkResultShowHotZoneIndex": 48,
"index": 2
},
{
"hotZoneType": "3",
"hotZoneType": "9",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "1",
"unselectedStyle": "mask",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "",
"contentList": [
{
"uuid": "2f54a92f-d499-4daf-ae73-ce2e15e94396",
"uuid": "0be0a2fd-030a-4f38-9ebb-29f8f697188d",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -734,39 +1123,75 @@ export const historyData = {
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 12
"selectHotZoneIndex": 8,
"letter": "E"
},
{
"uuid": "2dabe85e-8f0d-4024-851d-e9020b9ea22b",
"uuid": "10b69a20-26f0-4313-b563-d471ba4853d0",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 13
}
],
"linkResultShowHotZoneIndex": 11,
"index": 10
"selectHotZoneIndex": 9,
"letter": "n"
},
{
"hotZoneType": "3",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "1",
"unselectedStyle": "mask",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "",
"contentList": [
"uuid": "42e2269b-dd9d-4988-8a2f-f65698175944",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 10,
"letter": "g"
},
{
"uuid": "49731ad6-eeee-450a-b7e0-a1556c474f6e",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 11,
"letter": "l"
},
{
"uuid": "4f54b246-d89f-465e-b353-2b19b87d5310",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 3,
"letter": "i"
},
{
"uuid": "2f54a92f-d499-4daf-ae73-ce2e15e94396",
"uuid": "386f4dc2-35a5-41e0-a324-51a01d2b94f2",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -778,55 +1203,133 @@ export const historyData = {
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 15
"selectHotZoneIndex": 12,
"letter": "s"
},
{
"uuid": "2dabe85e-8f0d-4024-851d-e9020b9ea22b",
"uuid": "1462a6c8-cd47-404d-8707-d0246351e7ee",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": 0,
"isCorrect": true,
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectHotZoneIndex": 16
"selectHotZoneIndex": 13,
"letter": "h"
}
],
"linkResultShowHotZoneIndex": 14,
"index": 11
"linkResultShowHotZoneIndex": 49,
"index": 3
},
{
"hotZoneType": "0",
"linkHotZoneIndex": 17,
"hotZoneType": "5",
"linkHotZoneIndex": 24,
"audio_url": "",
"score": "5",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "computer room",
"contentList": [],
"index": 4
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 26,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "field",
"contentList": [],
"index": 5
},
{
"hotZoneType": "5",
"linkHotZoneIndex": 25,
"audio_url": "",
"score": "0.5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "art room",
"contentList": [],
"index": 6
},
{
"hotZoneType": "6",
"linkHotZoneIndex": -1,
"audio_url": "",
"score": "0",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "can",
"inputText": "",
"contentList": [
{
"uuid": "72289426-e75e-4847-b392-a886d8fc9362",
"uuid": "cca81944-c90d-4166-8c1a-3d937b8d80ef",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"score": "0.5",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "",
"selectStartHotZoneIndex": null,
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 0,
"selectHotZoneIndex": 17
"linkedShowText": "d",
"selectStartHotZoneIndex": 15,
"selectEndHotZoneIndex": 16,
"selectEndHotZoneShowIndex": 17
},
{
"uuid": "2cee0d75-7631-4b0f-82e5-fbfd7992a806",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "0.5",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "a",
"selectStartHotZoneIndex": 18,
"selectEndHotZoneIndex": 19,
"selectEndHotZoneShowIndex": 20
},
{
"uuid": "59388b0b-2fd5-407c-bc7a-c24d0a1933a7",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "0.5",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "b",
"selectStartHotZoneIndex": 21,
"selectEndHotZoneIndex": 22,
"selectEndHotZoneShowIndex": 23
}
],
"linkResultShowHotZoneIndex": 14,
"index": 7
},
{
"uuid": "4e657b61-d6b9-4f48-b68c-890d0da5b94c",
"hotZoneType": "0",
"linkHotZoneIndex": 27,
"audio_url": "",
"score": "5",
"unselectedStyle": "none",
"selectedStyle": "border",
"rightOrWrongStyleType": "symbol",
"inputText": "their",
"contentList": [
{
"uuid": "a3410857-c7e7-40c8-9cb5-20cdb4175b1b",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -839,10 +1342,10 @@ export const historyData = {
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 1,
"selectHotZoneIndex": 18
"selectHotZoneIndex": 27
},
{
"uuid": "5c18d7fd-6cd8-4341-b527-9877f0bc2407",
"uuid": "4652e686-7bb5-45d2-a80d-813e0c684b4b",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -855,10 +1358,10 @@ export const historyData = {
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 1,
"selectHotZoneIndex": 19
"selectHotZoneIndex": 28
},
{
"uuid": "f8faf9f5-b1b7-4c3e-8e64-f4dc9a57710b",
"uuid": "fea9518c-8987-4b77-a369-1eeac1c8ab98",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -871,21 +1374,21 @@ export const historyData = {
"selectEndHotZoneIndex": null,
"selectEndHotZoneShowIndex": null,
"selectOptionListIndex": 0,
"selectHotZoneIndex": 20
"selectHotZoneIndex": 29
}
],
"useSelectOptionList": true,
"selectOptionList": [
{
"text": "can",
"optionShowText": "can"
"text": "our",
"optionShowText": "our"
},
{
"text": "can't",
"optionShowText": "can't"
"text": "their",
"optionShowText": "their"
}
],
"index": 12
"index": 8
},
{
"hotZoneType": "6",
......@@ -898,7 +1401,7 @@ export const historyData = {
"inputText": "",
"contentList": [
{
"uuid": "bcd860e3-460d-4890-8c42-dd28c2c84910",
"uuid": "9f296ed9-48ec-4b83-a4b1-70f3aea6ccaa",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -906,13 +1409,27 @@ export const historyData = {
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "b",
"selectStartHotZoneIndex": 22,
"selectEndHotZoneIndex": 23,
"selectEndHotZoneShowIndex": 24
"linkedShowText": "e",
"selectStartHotZoneIndex": 34,
"selectEndHotZoneIndex": 35,
"selectEndHotZoneShowIndex": 36
},
{
"uuid": "cf9556f9-d579-46fc-8743-9bee998be0d0",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "c",
"selectStartHotZoneIndex": 37,
"selectEndHotZoneIndex": 38,
"selectEndHotZoneShowIndex": 39
},
{
"uuid": "09160a26-c0e9-42cf-88c6-b5ff2fa9aab2",
"uuid": "366dc955-8193-4301-8471-77da23e7eb26",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -921,12 +1438,26 @@ export const historyData = {
"isCorrect": false,
"isCheck": false,
"linkedShowText": "d",
"selectStartHotZoneIndex": 25,
"selectEndHotZoneIndex": 26,
"selectEndHotZoneShowIndex": 27
"selectStartHotZoneIndex": 40,
"selectEndHotZoneIndex": 41,
"selectEndHotZoneShowIndex": 42
},
{
"uuid": "867296d6-e980-4e0f-9d8f-f270172daac0",
"text": "",
"optionShowText": "",
"image_url": "",
"hotZoneIndex": null,
"score": "1",
"isCorrect": false,
"isCheck": false,
"linkedShowText": "f",
"selectStartHotZoneIndex": 43,
"selectEndHotZoneIndex": 44,
"selectEndHotZoneShowIndex": 45
},
{
"uuid": "3ae28df1-d0b8-441d-b172-c166c8db54ab",
"uuid": "813397f8-edaf-4d46-b594-1b2be9fbcdd8",
"text": "",
"optionShowText": "",
"image_url": "",
......@@ -935,13 +1466,13 @@ export const historyData = {
"isCorrect": false,
"isCheck": false,
"linkedShowText": "a",
"selectStartHotZoneIndex": 28,
"selectEndHotZoneIndex": 29,
"selectEndHotZoneShowIndex": 30
"selectStartHotZoneIndex": 31,
"selectEndHotZoneIndex": 32,
"selectEndHotZoneShowIndex": 33
}
],
"linkResultShowHotZoneIndex": 21,
"index": 13
"linkResultShowHotZoneIndex": 30,
"index": 9
}
],
"scoreConfigArr": [
......@@ -959,12 +1490,7 @@ export const historyData = {
8,
9,
10,
11,
12,
13,
14,
15,
16
11
]
}
],
......@@ -972,35 +1498,35 @@ export const historyData = {
},
"details": [
{
"contentType": "5",
"contentType": "9",
"configIndex": 0,
"contentIndex": -1,
"currentInputText": "lay",
"correctText": "lay",
"correctWord": "music",
"inputWord": "music",
"right": true
},
{
"contentType": "5",
"contentType": "9",
"configIndex": 1,
"contentIndex": -1,
"currentInputText": "ocker",
"correctText": "occer",
"right": false
"correctWord": "math",
"inputWord": "math",
"right": true
},
{
"contentType": "5",
"contentType": "9",
"configIndex": 2,
"contentIndex": -1,
"currentInputText": "",
"correctText": "ide",
"right": false
"correctWord": "PE",
"inputWord": "PE",
"right": true
},
{
"contentType": "5",
"contentType": "9",
"configIndex": 3,
"contentIndex": -1,
"currentInputText": "",
"correctText": "ike",
"correctWord": "English",
"inputWord": "E^^^i^^",
"right": false
},
{
......@@ -1008,7 +1534,7 @@ export const historyData = {
"configIndex": 4,
"contentIndex": -1,
"currentInputText": "",
"correctText": "kate",
"correctText": "computer room",
"right": false
},
{
......@@ -1016,7 +1542,7 @@ export const historyData = {
"configIndex": 5,
"contentIndex": -1,
"currentInputText": "",
"correctText": "ide",
"correctText": "field",
"right": false
},
{
......@@ -1024,58 +1550,46 @@ export const historyData = {
"configIndex": 6,
"contentIndex": -1,
"currentInputText": "",
"correctText": "orse",
"correctText": "art room",
"right": false
},
{
"contentType": "5",
"contentType": "6",
"configIndex": 7,
"contentIndex": -1,
"currentInputText": "",
"correctText": "lay",
"right": false
},
{
"contentType": "5",
"configIndex": 8,
"contentIndex": -1,
"currentInputText": "",
"correctText": "ennis",
"right": false
},
"results": [
{
"contentType": "3",
"configIndex": 9,
"contentIndex": -1,
"currentSelectIndex": -1,
"currentSelectText": "",
"correctSelectIndex": 0,
"correctSelectText": "",
"startIndex": 0,
"startText": "",
"correctEndIndex": 0,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
},
{
"contentType": "3",
"configIndex": 10,
"contentIndex": -1,
"currentSelectIndex": -1,
"currentSelectText": "",
"correctSelectIndex": 1,
"correctSelectText": "",
"startIndex": 1,
"startText": "",
"correctEndIndex": 1,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
},
{
"contentType": "3",
"configIndex": 11,
"contentIndex": -1,
"currentSelectIndex": -1,
"currentSelectText": "",
"correctSelectIndex": 1,
"correctSelectText": "",
"startIndex": 2,
"startText": "",
"correctEndIndex": 2,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
}
]
},
{
"contentType": "0",
"configIndex": 12,
"configIndex": 8,
"contentIndex": 0,
"currentSelectIndex": null,
"currentSelectText": "",
......@@ -1085,7 +1599,7 @@ export const historyData = {
},
{
"contentType": "0",
"configIndex": 12,
"configIndex": 8,
"contentIndex": 1,
"currentSelectIndex": null,
"currentSelectText": "",
......@@ -1095,7 +1609,7 @@ export const historyData = {
},
{
"contentType": "0",
"configIndex": 12,
"configIndex": 8,
"contentIndex": 2,
"currentSelectIndex": null,
"currentSelectText": "",
......@@ -1103,19 +1617,9 @@ export const historyData = {
"correctSelectText": "",
"right": false
},
{
"contentType": "0",
"configIndex": 12,
"contentIndex": 3,
"currentSelectIndex": null,
"currentSelectText": "",
"correctSelectIndex": 3,
"correctSelectText": "",
"right": false
},
{
"contentType": "6",
"configIndex": 13,
"configIndex": 9,
"contentIndex": -1,
"results": [
{
......@@ -1144,6 +1648,24 @@ export const historyData = {
"currentEndIndex": -1,
"currentEndText": "",
"right": false
},
{
"startIndex": 3,
"startText": "",
"correctEndIndex": 3,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
},
{
"startIndex": 4,
"startText": "",
"correctEndIndex": 4,
"correctEndText": "",
"currentEndIndex": -1,
"currentEndText": "",
"right": false
}
]
}
......@@ -1163,21 +1685,16 @@ export const historyData = {
8,
9,
10,
11,
12,
13,
14,
15,
16
11
],
"score": 0.5
"score": 3
}
],
"basicScore": 0,
"totalScore": 0.5,
"totalScore": 3,
"isAllRight": false,
"isAllWrong": false,
"startTimestamp": 1689061179336,
"submitTimestamp": 1689061205879,
"answeringTime": 26543
"startTimestamp": 1689066643663,
"submitTimestamp": 1689066652261,
"answeringTime": 8598
}
\ 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