|
@@ -608,9 +608,9 @@ export default {
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
this.scoreType = info ? info.value : 'D';
|
|
this.scoreType = info ? info.value : 'D';
|
|
|
- let score = row.myScore * 100;
|
|
|
|
|
|
|
+ let score = (row.myScore * 100).toString();
|
|
|
|
|
|
|
|
- this.scoreValue = [Math.ceil(score / 100), Math.ceil((score % 100) / 10), score % 10];
|
|
|
|
|
|
|
+ this.scoreValue = [Number(score.substr(0, 2)), Number(score.substr(2, 1)), Number(score.substr(3, 1))];
|
|
|
},
|
|
},
|
|
|
move(direction) {
|
|
move(direction) {
|
|
|
const end = direction + this.index;
|
|
const end = direction + this.index;
|