Added UID scan for form
This commit is contained in:
parent
59d6b654c5
commit
c3870e65e3
1 changed files with 34 additions and 18 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="col-12 col-md-8 col-lg-7 q-gutter-y-md">
|
<div class="col-12 col-md-8 col-lg-7 q-gutter-y-md">
|
||||||
<q-card>
|
<q-card>
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<q-btn unelevated color="primary" v-on:click="addCardOpen"
|
<q-btn unelevated color="primary" class="addCardBtn" v-on:click="addCardOpen"
|
||||||
>Add Card</q-btn
|
>Add Card</q-btn
|
||||||
>
|
>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|
@ -187,7 +187,6 @@
|
||||||
label="Wallet *"
|
label="Wallet *"
|
||||||
>
|
>
|
||||||
</q-select>
|
</q-select>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<q-input
|
<q-input
|
||||||
|
|
@ -211,8 +210,6 @@
|
||||||
></q-input>
|
></q-input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<q-input
|
<q-input
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
|
|
@ -221,14 +218,33 @@
|
||||||
type="text"
|
type="text"
|
||||||
label="Card name "
|
label="Card name "
|
||||||
></q-input>
|
></q-input>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-10">
|
||||||
|
|
||||||
|
|
||||||
<q-input
|
<q-input
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
|
emit-value
|
||||||
v-model.trim="cardDialog.data.uid"
|
v-model.trim="cardDialog.data.uid"
|
||||||
type="text"
|
type="text"
|
||||||
label="Card UID"
|
label="Card UID "
|
||||||
><q-tooltip>From the NFC 424 ntag card that will be loaded</q-tooltip>
|
><q-tooltip>Get from the card you'll use, using an NFC app</q-tooltip></q-input>
|
||||||
</q-input>
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-2 q-pl-sm">
|
||||||
|
<q-btn
|
||||||
|
outline
|
||||||
|
disable
|
||||||
|
color="grey"
|
||||||
|
icon="nfc"
|
||||||
|
:disable="nfcTagReading"
|
||||||
|
><q-tooltip>Tap card to scan UID (coming soon)</q-tooltip></q-btn>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<q-toggle
|
<q-toggle
|
||||||
@click="toggleKeys"
|
@click="toggleKeys"
|
||||||
v-model="toggleAdvanced"
|
v-model="toggleAdvanced"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue