|
@@ -84,12 +84,7 @@ export default defineComponent({
|
|
|
(store.currentQuestion.score || 0) * 100 -
|
|
|
store.currentScore * 2 * 100
|
|
|
) / 100;
|
|
|
- if (
|
|
|
- (ifKeepScore < 0 && store.currentScore > 0) ||
|
|
|
- Math.round(ifKeepScore * 100) %
|
|
|
- Math.round(store.currentQuestion.intervalScore * 100) !==
|
|
|
- 0
|
|
|
- ) {
|
|
|
+ if (ifKeepScore < 0 && store.currentScore > 0) {
|
|
|
store.currentScore = undefined;
|
|
|
}
|
|
|
const markResult = store.currentMarkResult;
|