mirror of
https://github.com/tmaier/asn-qr-code-label-generator.git
synced 2026-03-14 16:43:31 +00:00
Merge 11830f1608 into 69e164eee6
This commit is contained in:
commit
23ea019cf3
1 changed files with 9 additions and 0 deletions
|
|
@ -182,6 +182,12 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</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
|
<button
|
||||||
@click.prevent="generateLabels()"
|
@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"
|
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.readUrlParams();
|
||||||
this.generateLabels();
|
this.generateLabels();
|
||||||
},
|
},
|
||||||
|
setNextBatchStartNumber() {
|
||||||
|
this.startNumber = parseInt(this.startNumber, 10) + 7 * 27;
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue