|
@@ -5748,27 +5748,27 @@ export default {
|
|
|
_unitJson2[_unitIndex]
|
|
|
for(var ci = 0;ci<_unitJson2[_unitIndex].chapterInfo[0].taskJson.length;ci++){
|
|
|
_unitJson2[_unitIndex].chapterInfo[0].taskJson[
|
|
|
- k
|
|
|
+ ci
|
|
|
].toolChoose = _unitJson2[_unitIndex].chapterInfo[0].taskJson[
|
|
|
- k
|
|
|
+ ci
|
|
|
].toolChoose
|
|
|
- ? _unitJson2[_unitIndex].chapterInfo[0].taskJson[k]
|
|
|
+ ? _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
|
|
|
.toolChoose
|
|
|
: [];
|
|
|
let _chapterData = [];
|
|
|
- for (var c = 0;c < _unitJson2[_unitIndex].chapterInfo[0].taskJson[k]
|
|
|
+ for (var c = 0;c < _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
|
|
|
.chapterData.length;c++) {
|
|
|
if (
|
|
|
- _unitJson2[_unitIndex].chapterInfo[0].taskJson[k].chapterData[c]
|
|
|
+ _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData[c]
|
|
|
) {
|
|
|
_chapterData.push(
|
|
|
- _unitJson2[_unitIndex].chapterInfo[0].taskJson[k].chapterData[
|
|
|
+ _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData[
|
|
|
c
|
|
|
]
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
- _unitJson2[_unitIndex].chapterInfo[0].taskJson[k].chapterData =
|
|
|
+ _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData =
|
|
|
_chapterData;
|
|
|
}
|
|
|
_unitJson[_unitIndex2] = _unitJson2[_unitIndex];
|