replace radio option to select dropdown for zones on checkout
This commit is contained in:
parent
301017633a
commit
c0a48bf444
1 changed files with 9 additions and 4 deletions
|
|
@ -160,11 +160,16 @@
|
||||||
></q-input>
|
></q-input>
|
||||||
<p>Select the shipping zone:</p>
|
<p>Select the shipping zone:</p>
|
||||||
<div class="row q-mt-lg">
|
<div class="row q-mt-lg">
|
||||||
<q-option-group
|
<q-select
|
||||||
:options="stall.shipping.map(s => ({label: s.countries.toString(), value: s.id}))"
|
style="min-width: 200px"
|
||||||
type="radio"
|
filled
|
||||||
emit-value
|
dense
|
||||||
|
stack-label
|
||||||
v-model="checkoutDialog.data.shippingzone"
|
v-model="checkoutDialog.data.shippingzone"
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
:options="stall.shipping.map(s => ({label: s.countries.toString(), value: s.id}))"
|
||||||
|
label="Shipping Zone"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="row q-mt-lg">
|
<div class="row q-mt-lg">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue