Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DG_FAF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
DG_FAF
Commits
145fcce6
Commit
145fcce6
authored
Jul 12, 2023
by
李维
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加连线PRO历史记录展示
parent
e6aebe0f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
154 additions
and
22 deletions
+154
-22
DG_FAF.ts
assets/DG_FAF/scene/DG_FAF.ts
+96
-0
defaultData_DG_FAF.ts
assets/DG_FAF/script/defaultData_DG_FAF.ts
+1
-1
historyData_DG_FAF.ts
assets/DG_FAF/script/historyData_DG_FAF.ts
+57
-21
No files found.
assets/DG_FAF/scene/DG_FAF.ts
View file @
145fcce6
...
@@ -855,6 +855,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -855,6 +855,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
case
CONNECTION
:
case
CONNECTION
:
this
.
showConnectionGroup
(
configItem
,
resultData
);
this
.
showConnectionGroup
(
configItem
,
resultData
);
break
;
break
;
// 连线PRO
case
CONNECTION_PRO
:
this
.
showConnectionPro
(
configItem
,
resultData
);
break
;
// 文字输入
// 文字输入
case
TEXTINPUT
:
case
TEXTINPUT
:
this
.
showTextInput
(
configItem
,
resultData
);
this
.
showTextInput
(
configItem
,
resultData
);
...
@@ -1041,6 +1045,98 @@ export default class SceneComponent extends MyCocosSceneComponent {
...
@@ -1041,6 +1045,98 @@ export default class SceneComponent extends MyCocosSceneComponent {
});
});
}
}
// 连线PRO - 历史记录
showConnectionPro
(
configItem
,
resultData
)
{
const
debugMode
=
false
;
const
resultIconShowData
=
this
.
data
.
hotZoneItemArr
[
configItem
.
linkResultShowHotZoneIndex
];
const
resultIconRect
=
this
.
newRectNode
(
resultIconShowData
,
layer_2
,
debugMode
);
let
allRight
=
true
;
resultData
[
0
].
results
.
forEach
(
item
=>
{
if
(
item
.
right
==
false
)
{
allRight
=
false
}
});
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
(
allRight
)
{
resultIconRect
.
addChild
(
rightIcon
);
}
else
{
resultIconRect
.
addChild
(
errIcon
);
}
// 连线点都显示出来
const
startRects
=
[];
const
endRects
=
[];
configItem
.
connectionPRO_startArr
.
forEach
(
startIndex
=>
{
if
(
startIndex
>=
0
&&
this
.
data
.
hotZoneItemArr
[
startIndex
])
{
const
iconStart
=
this
.
getSprNode
(
"
icon_connect_start
"
);
const
startHotZoneData
=
this
.
data
.
hotZoneItemArr
[
startIndex
];
const
startRect
=
this
.
newRectNode
(
startHotZoneData
,
layer_4
,
debugMode
);
startRect
.
hotZoneIndex
=
startIndex
;
iconStart
.
zIndex
=
layer_2
;
iconStart
.
x
=
startRect
.
width
/
2
;
iconStart
.
y
=
startRect
.
height
/
2
;
startRect
.
addChild
(
iconStart
);
startRects
.
push
(
startRect
)
}
else
{
startRects
.
push
(
null
)
}
});
configItem
.
connectionPRO_endArr
.
forEach
(
endIndex
=>
{
if
(
endIndex
>=
0
&&
this
.
data
.
hotZoneItemArr
[
endIndex
])
{
const
endHotZoneData
=
this
.
data
.
hotZoneItemArr
[
endIndex
];
const
endRect
=
this
.
newRectNode
(
endHotZoneData
,
layer_5
,
debugMode
);
endRect
.
hotZoneIndex
=
endIndex
;
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
)
}
});
// 根据用户结果还原显示
resultData
[
0
].
results
.
forEach
((
resData
,
index
)
=>
{
if
(
resData
.
correctStartIndex
<
0
||
resData
.
correctEndIndex
<
0
)
{
return
}
const
startRect
=
startRects
.
find
(
item
=>
item
.
hotZoneIndex
==
resData
.
correctStartIndex
)
const
endRect
=
endRects
.
find
(
item
=>
item
.
hotZoneIndex
==
resData
.
correctEndIndex
)
if
(
!
startRect
||
!
endRect
)
{
return
}
const
lineNode
=
new
cc
.
Node
();
lineNode
.
name
=
'
connect1_
'
+
index
;
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
();
})
}
// 判断对错 - 历史记录
// 判断对错 - 历史记录
showRightOrWrongGroup
(
configItem
,
resultData
)
{
showRightOrWrongGroup
(
configItem
,
resultData
)
{
const
debugMode
=
false
;
const
debugMode
=
false
;
...
...
assets/DG_FAF/script/defaultData_DG_FAF.ts
View file @
145fcce6
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
"
}
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
"
:
"
18
"
,
"
linkHotZoneIndex
"
:
33
,
"
connectionPRO_startArr
"
:[
32
,
33
],
"
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
"
:
32
,
"
selectEndHotZoneIndex
"
:
34
,
"
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
"
:
33
,
"
selectEndHotZoneIndex
"
:
35
,
"
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
"
:
32
,
"
selectEndHotZoneIndex
"
:
36
,
"
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
"
:
37
,
"
linkHotZoneShowIndex
"
:
37
,
"
connectionPRO_endArr
"
:[
34
,
35
,
36
]}],
"
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-12T09:19:34.322Z
"
}
\ No newline at end of file
\ No newline at end of file
assets/DG_FAF/script/historyData_DG_FAF.ts
View file @
145fcce6
...
@@ -1046,9 +1046,12 @@ export const historyData = {
...
@@ -1046,9 +1046,12 @@ export const historyData = {
"
index
"
:
13
"
index
"
:
13
},
},
{
{
"
hotZoneType
"
:
"
1
1
"
,
"
hotZoneType
"
:
"
1
8
"
,
"
linkHotZoneIndex
"
:
33
,
"
linkHotZoneIndex
"
:
33
,
"
connectionPRO_startArr
"
:
[],
"
connectionPRO_startArr
"
:
[
32
,
33
],
"
connectionPRO_endtArr
"
:
[],
"
connectionPRO_endtArr
"
:
[],
"
audio_url
"
:
""
,
"
audio_url
"
:
""
,
"
video_url
"
:
""
,
"
video_url
"
:
""
,
...
@@ -1079,8 +1082,8 @@ export const historyData = {
...
@@ -1079,8 +1082,8 @@ export const historyData = {
"
isCorrect
"
:
false
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
A
"
,
"
linkedShowText
"
:
"
A
"
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
32
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
34
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
...
@@ -1112,8 +1115,8 @@ export const historyData = {
...
@@ -1112,8 +1115,8 @@ export const historyData = {
"
isCorrect
"
:
true
,
"
isCorrect
"
:
true
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
B
"
,
"
linkedShowText
"
:
"
B
"
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
33
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
35
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
...
@@ -1145,8 +1148,8 @@ export const historyData = {
...
@@ -1145,8 +1148,8 @@ export const historyData = {
"
isCorrect
"
:
false
,
"
isCorrect
"
:
false
,
"
isCheck
"
:
false
,
"
isCheck
"
:
false
,
"
linkedShowText
"
:
"
C
"
,
"
linkedShowText
"
:
"
C
"
,
"
selectStartHotZoneIndex
"
:
null
,
"
selectStartHotZoneIndex
"
:
32
,
"
selectEndHotZoneIndex
"
:
null
,
"
selectEndHotZoneIndex
"
:
36
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectEndHotZoneShowIndex
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectStartHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
"
selectEndHotZoneIndex_1
"
:
null
,
...
@@ -1167,8 +1170,13 @@ export const historyData = {
...
@@ -1167,8 +1170,13 @@ export const historyData = {
"
selectHotZoneIndex
"
:
36
"
selectHotZoneIndex
"
:
36
}
}
],
],
"
linkResultShowHotZoneIndex
"
:
3
2
,
"
linkResultShowHotZoneIndex
"
:
3
7
,
"
linkHotZoneShowIndex
"
:
37
,
"
linkHotZoneShowIndex
"
:
37
,
"
connectionPRO_endArr
"
:
[
34
,
35
,
36
],
"
index
"
:
14
"
index
"
:
14
}
}
],
],
...
@@ -1198,7 +1206,7 @@ export const historyData = {
...
@@ -1198,7 +1206,7 @@ export const historyData = {
],
],
"
ratingSystem
"
:
"
0
"
,
"
ratingSystem
"
:
"
0
"
,
"
basicScore
"
:
""
,
"
basicScore
"
:
""
,
"
lastModify
"
:
"
2023-07-12T0
8:26:37.427
Z
"
"
lastModify
"
:
"
2023-07-12T0
9:19:34.322
Z
"
},
},
"
details
"
:
[
"
details
"
:
[
{
{
...
@@ -1378,16 +1386,44 @@ export const historyData = {
...
@@ -1378,16 +1386,44 @@ export const historyData = {
]
]
},
},
{
{
"
contentType
"
:
"
1
1
"
,
"
contentType
"
:
"
1
8
"
,
"
configIndex
"
:
14
,
"
configIndex
"
:
14
,
"
contentIndex
"
:
-
1
,
"
contentIndex
"
:
-
1
,
"
result
"
:
{
"
results
"
:
[
"
correctEndIndex
"
:
-
1
,
{
"
startIndex
"
:
0
,
"
startText
"
:
""
,
"
correctStartIndex
"
:
32
,
"
correctEndIndex
"
:
34
,
"
correctEndText
"
:
""
,
"
currentStartIndex
"
:
null
,
"
currentEndIndex
"
:
null
,
"
currentEndText
"
:
""
,
"
right
"
:
true
},
{
"
startIndex
"
:
1
,
"
startText
"
:
""
,
"
correctStartIndex
"
:
33
,
"
correctEndIndex
"
:
35
,
"
correctEndText
"
:
""
,
"
currentStartIndex
"
:
null
,
"
currentEndIndex
"
:
null
,
"
currentEndText
"
:
""
,
"
right
"
:
true
},
{
"
startIndex
"
:
2
,
"
startText
"
:
""
,
"
correctStartIndex
"
:
32
,
"
correctEndIndex
"
:
36
,
"
correctEndText
"
:
""
,
"
correctEndText
"
:
""
,
"
currentEndIndex
"
:
1
,
"
currentStartIndex
"
:
null
,
"
currentEndText
"
:
"
B
"
,
"
currentEndIndex
"
:
null
,
"
currentEndText
"
:
""
,
"
right
"
:
true
"
right
"
:
true
}
}
]
}
}
],
],
"
scoreCconfigArr
"
:
[
"
scoreCconfigArr
"
:
[
...
@@ -1419,7 +1455,7 @@ export const historyData = {
...
@@ -1419,7 +1455,7 @@ export const historyData = {
"
totalScore
"
:
0
,
"
totalScore
"
:
0
,
"
isAllRight
"
:
false
,
"
isAllRight
"
:
false
,
"
isAllWrong
"
:
false
,
"
isAllWrong
"
:
false
,
"
startTimestamp
"
:
168915
1973011
,
"
startTimestamp
"
:
168915
3616958
,
"
submitTimestamp
"
:
168915
1981570
,
"
submitTimestamp
"
:
168915
3631321
,
"
answeringTime
"
:
8559
"
answeringTime
"
:
14363
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment