|
|
@@ -472,7 +472,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-@Html.Partial("/Views/Play/__/_Chart_RoundScore_Max.cshtml",1)
|
|
|
+ @Html.Partial("/Views/ExerciseV2/_Play/__/_Chart_RoundScore_Max.cshtml", 1)
|
|
|
</div>
|
|
|
@section scripts{
|
|
|
<script src="~/Content/Libs/eCharts/echarts.min.js"></script>
|
|
|
@@ -595,6 +595,9 @@
|
|
|
var wlChartData = wlChart.data[0];
|
|
|
for (var j = 0; j < wlTags.length; j++) {
|
|
|
var tag_wl = tags.find(vv => vv.tagNo == wlTags[j]);
|
|
|
+ if (!tag_wl) {
|
|
|
+ tag_wl = { tagNo: wlTags[j], totalScore: 0, correctionScore: 0 }
|
|
|
+ }
|
|
|
if (wlChart.indicator.length <= j) {
|
|
|
wlChart.indicator.push({ name: tag_wl.tagNo, max: tag_wl.totalScore || 0 });
|
|
|
} else {
|