sonar 2 left

This commit is contained in:
Cindy Chang
2024-08-09 14:41:30 +08:00
parent 972b92640f
commit 995b09cc02

View File

@@ -385,17 +385,13 @@ export default {
if(totalSeconds >= this.maxTotal){ // 大於最大值時要等於最大值 if(totalSeconds >= this.maxTotal){ // 大於最大值時要等於最大值
totalSeconds = this.maxTotal; totalSeconds = this.maxTotal;
this.secondToDate(this.maxTotal, 'max'); this.secondToDate(this.maxTotal, 'max');
this.totalSeconds = totalSeconds;
} else if (totalSeconds <= this.minTotal) { // 小於最小值時要等於最小值 } else if (totalSeconds <= this.minTotal) { // 小於最小值時要等於最小值
totalSeconds = this.minTotal; totalSeconds = this.minTotal;
this.secondToDate(this.minTotal, 'min'); this.secondToDate(this.minTotal, 'min');
this.totalSeconds = totalSeconds;
} else if((this.size === 'min' && totalSeconds <= this.maxTotal)) { } else if((this.size === 'min' && totalSeconds <= this.maxTotal)) {
this.maxDays = Math.floor(this.maxTotal / (3600 * 24)); this.maxDays = Math.floor(this.maxTotal / (3600 * 24));
}
this.totalSeconds = totalSeconds; this.totalSeconds = totalSeconds;
} else {
this.totalSeconds = totalSeconds;
};
this.$emit('total-seconds', totalSeconds); this.$emit('total-seconds', totalSeconds);
}, },
/** /**