This commit is contained in:
rafael 2026-02-14 09:20:00 +00:00 committed by GitHub
commit 23ea019cf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -182,6 +182,12 @@
</div>
</div>
</div>
<button
@click.prevent="setNextBatchStartNumber()"
class="w-full rounded-lg bg-gray-500 px-5 py-2.5 text-center text-sm font-medium text-white hover:bg-gray-600 focus:outline-none focus:ring-4 focus:ring-blue-300 sm:w-auto"
>
Next Batch
</button>
<button
@click.prevent="generateLabels()"
class="w-full rounded-lg bg-blue-700 px-5 py-2.5 text-center text-sm font-medium text-white hover:bg-blue-800 focus:outline-none focus:ring-4 focus:ring-blue-300 sm:w-auto"
@ -318,6 +324,9 @@
this.readUrlParams();
this.generateLabels();
},
setNextBatchStartNumber() {
this.startNumber = parseInt(this.startNumber, 10) + 7 * 27;
},
};
}
</script>