|
|
@@ -610,7 +610,7 @@ export default {
|
|
|
this.scoreType = info ? info.value : 'D';
|
|
|
let score = row.myScore * 100;
|
|
|
|
|
|
- this.scoreValue = [parseInt(score / 100), parseInt((score % 100) / 10), score % 10];
|
|
|
+ this.scoreValue = [Math.ceil(score / 100), Math.ceil((score % 100) / 10), score % 10];
|
|
|
},
|
|
|
move(direction) {
|
|
|
const end = direction + this.index;
|