DemoFormLayoutFormSticky.vue
9.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
<script setup lang="ts">
import type { CustomInputContent } from '@core/types'
const radioContent: CustomInputContent[] = [
{
title: 'Standard',
desc: 'Delivery in 3-5 days.',
value: 'standard',
icon: 'ri-briefcase-line',
},
{
title: 'Express',
desc: 'Delivery within 2 days.',
value: 'express',
icon: 'ri-rocket-line',
},
{
title: 'Overnight',
desc: 'Delivery within a days.',
value: 'overnight',
icon: 'ri-vip-crown-line',
},
]
const promoCodeList = [
{
code: 'TAKEITALL',
desc: 'Apply this code to get 15% discount on orders above 20$.',
},
{
code: 'FESTIVE10',
desc: 'Apply this code to get 10% discount on all orders.',
},
{
code: 'MYSTERYDEAL',
desc: 'Apply this code to get discount between 10% - 50%.',
},
]
const formData = ref({
fullName: '',
email: '',
contactNumber: null,
altContactNumber: null,
address: '',
pincode: null,
Landmark: '',
city: '',
state: null,
defaultAddress: false,
addressType: 'home',
deliveryType: 'standard',
promoCode: '',
paymentMethod: 'card',
cardNumber: null,
cardName: '',
cardExDate: '',
cardCvv: '',
})
</script>
<template>
<VCard class="overflow-visible">
<div class="w-100 sticky-header overflow-hidden rounded-t">
<div class=" d-flex align-center gap-4 flex-wrap bg-custom-background pa-6">
<VCardTitle>Sticky Action Bar</VCardTitle>
<VSpacer />
<div>
<VBtn
variant="tonal"
class="me-4"
>
Back
</VBtn>
<VBtn>Place Order</VBtn>
</div>
</div>
</div>
<VCardText>
<VRow>
<VCol
md="8"
cols="12"
class="mx-auto"
>
<VForm>
<h2 class="text-lg font-weight-medium mb-6">
1. Delivery Address
</h2>
<VRow>
<VCol
cols="12"
md="6"
>
<VTextField
v-model="formData.fullName"
label="Full Name"
placeholder="John Doe"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VTextField
v-model="formData.email"
label="Email"
placeholder="john.doe"
suffix="@example.com"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VTextField
v-model="formData.contactNumber"
label="Contact Number"
placeholder="658 123 4567"
type="number"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VTextField
v-model="formData.altContactNumber"
label="Alternate Number"
placeholder="658 123 4567"
type="number"
/>
</VCol>
<VCol cols="12">
<VTextarea
v-model="formData.address"
label="Address"
placeholder="1456, Mall Road"
rows="2"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VTextField
v-model="formData.pincode"
label="Pincode"
placeholder="658468"
type="number"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VTextField
v-model="formData.Landmark"
label="Landmark"
placeholder="Nr. Wall Street"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VTextField
v-model="formData.city"
label="City"
placeholder="Jackson"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VSelect
v-model="formData.state"
label="State"
placeholder="California"
:items="['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida']"
/>
</VCol>
<VCol cols="12">
<VCheckbox
v-model="formData.defaultAddress"
label="Use this as default delivery address"
/>
</VCol>
<VCol cols="12">
<p class="text-high-emphasis text-base mb-1">
Address Type
</p>
<VRadioGroup
v-model="formData.addressType"
inline
>
<VRadio
label="Home (All day delivery)"
value="home"
/>
<VRadio
label="Office (Delivery between 10 AM - 5 PM)"
value="work"
/>
</VRadioGroup>
</VCol>
</VRow>
<VDivider class="my-6" />
<h2 class="text-lg font-weight-medium mb-6">
2. Delivery Type
</h2>
<CustomRadiosWithIcon
v-model:selected-radio="formData.deliveryType"
:radio-content="radioContent"
:grid-column="{ sm: '4', cols: '12' }"
/>
<VDivider class="my-6" />
<h2 class="text-lg font-weight-medium mb-6">
3. Apply Promo code
</h2>
<div class="d-flex align-center gap-4">
<VTextField
v-model="formData.promoCode"
density="compact"
placeholder="TAKEITALL"
/>
<VBtn>Apply</VBtn>
</div>
<div class="d-flex align-center gap-2 my-4">
<VDivider style="border-style: dashed;" />
<span>OR</span>
<VDivider style="border-style: dashed;" />
</div>
<VList
class="border rounded py-0"
lines="two"
>
<VListItem
v-for="(item, index) in promoCodeList"
:key="item.code"
:title="item.code"
:subtitle="item.desc"
:class="index !== 0 ? 'border-t' : ''"
>
<template #append>
<VBtn variant="outlined">
Apply
</VBtn>
</template>
</VListItem>
</VList>
<VDivider class="my-6" />
<h2 class="text-lg font-weight-medium mb-6">
4. Payment Method
</h2>
<VRadioGroup
v-model="formData.paymentMethod"
inline
class="mb-4"
>
<VRadio
value="card"
label="Credit/Debit/ATM Card"
/>
<VRadio
value="cash-on-delivery"
label="Cash On Delivery"
/>
</VRadioGroup>
<VRow v-show="formData.paymentMethod === 'card'">
<VCol cols="12">
<VTextField
label="Card Number"
placeholder="1356 3215 6548 7898"
/>
</VCol>
<VCol
cols="12"
md="6"
>
<VTextField
label="Name"
placeholder="John Doe"
/>
</VCol>
<VCol
cols="6"
md="3"
>
<VTextField
label="Exp. Date"
placeholder="MM/YY"
/>
</VCol>
<VCol
cols="6"
md="3"
>
<VTextField
label="CVV Code"
placeholder="654"
/>
</VCol>
</VRow>
<div v-show="formData.paymentMethod === 'cash-on-delivery'">
<p>
Cash on delivery is a mode of payment where you make the payment after the goods/services are received.
</p>
<p>You can pay cash or make the payment via debit/credit card directly to the delivery person.</p>
</div>
</VForm>
</VCol>
</VRow>
</VCardText>
</VCard>
</template>
<style lang="scss" scoped>
.sticky-header {
position: sticky;
z-index: 9;
transition: all 0.3s ease-in-out;
}
.layout-nav-type-vertical {
&.layout-navbar-sticky {
.sticky-header {
inset-block: 4rem 0;
}
}
&.layout-navbar-static {
.sticky-header {
inset-block: 0 0;
}
}
}
.layout-nav-type-horizontal {
&.layout-navbar-static {
.sticky-header {
inset-block: 0 0;
}
}
&.layout-navbar-sticky:not(.horizontal-nav-static) {
.sticky-header{
inset-block: 7.7rem 0;
}
}
}
</style>