Update OrderList and PickList demos
parent
2d5dd3a9f4
commit
fa537c5495
|
@ -15,7 +15,10 @@
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</OrderList>
|
</OrderList>
|
||||||
|
@ -49,23 +52,24 @@ export default {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.p-caritem {
|
.p-caritem {
|
||||||
&:after {
|
display: flex;
|
||||||
content: "";
|
align-items: center;
|
||||||
display: table;
|
|
||||||
clear: both;
|
div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-caritem-vin {
|
||||||
|
font-weight: 600;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: .25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display:inline-block;
|
|
||||||
margin:2px 0 2px 2px;
|
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
}
|
margin-right: .5em;
|
||||||
|
|
||||||
div {
|
|
||||||
font-size:14px;
|
|
||||||
float:right;
|
|
||||||
margin: 16px 6px 0 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -21,7 +21,10 @@ import OrderList from 'primevue/orderlist';
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</OrderList>
|
</OrderList>
|
||||||
|
@ -44,7 +47,10 @@ import OrderList from 'primevue/orderlist';
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</OrderList>
|
</OrderList>
|
||||||
|
@ -171,7 +177,10 @@ import OrderList from 'primevue/orderlist';
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</OrderList>
|
</OrderList>
|
||||||
|
@ -199,23 +208,24 @@ export default {
|
||||||
|
|
||||||
<CodeHighlight lang="css">
|
<CodeHighlight lang="css">
|
||||||
.p-caritem {
|
.p-caritem {
|
||||||
&:after {
|
display: flex;
|
||||||
content: "";
|
align-items: center;
|
||||||
display: table;
|
|
||||||
clear: both;
|
div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-caritem-vin {
|
||||||
|
font-weight: 600;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: .25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display:inline-block;
|
|
||||||
margin:2px 0 2px 2px;
|
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
}
|
margin-right: .5em;
|
||||||
|
|
||||||
div {
|
|
||||||
font-size:14px;
|
|
||||||
float:right;
|
|
||||||
margin: 16px 6px 0 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
|
@ -18,7 +18,10 @@
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</PickList>
|
</PickList>
|
||||||
|
@ -52,23 +55,24 @@ export default {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.p-caritem {
|
.p-caritem {
|
||||||
&:after {
|
display: flex;
|
||||||
content: "";
|
align-items: center;
|
||||||
display: table;
|
|
||||||
clear: both;
|
div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-caritem-vin {
|
||||||
|
font-weight: 600;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: .25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display:inline-block;
|
|
||||||
margin:2px 0 2px 2px;
|
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
}
|
margin-right: .5em;
|
||||||
|
|
||||||
div {
|
|
||||||
font-size:14px;
|
|
||||||
float:right;
|
|
||||||
margin: 16px 6px 0 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -16,7 +16,10 @@ import PickList from 'primevue/picklist';
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</PickList>
|
</PickList>
|
||||||
|
@ -37,7 +40,10 @@ import PickList from 'primevue/picklist';
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</PickList>
|
</PickList>
|
||||||
|
@ -55,7 +61,10 @@ import PickList from 'primevue/picklist';
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</PickList>
|
</PickList>
|
||||||
|
@ -230,7 +239,10 @@ import PickList from 'primevue/picklist';
|
||||||
<template #item="slotProps">
|
<template #item="slotProps">
|
||||||
<div class="p-caritem">
|
<div class="p-caritem">
|
||||||
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
<img :src="'demo/images/car/' + slotProps.item.brand + '.png'">
|
||||||
<div>{{slotProps.item.brand}} - {{slotProps.item.year}} - {{slotProps.item.color}}</div>
|
<div>
|
||||||
|
<span class="p-caritem-vin">{{slotProps.item.vin}}</span>
|
||||||
|
<span>{{slotProps.item.year}} - {{slotProps.item.color}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</PickList>
|
</PickList>
|
||||||
|
@ -258,23 +270,24 @@ export default {
|
||||||
|
|
||||||
<CodeHighlight lang="css">
|
<CodeHighlight lang="css">
|
||||||
.p-caritem {
|
.p-caritem {
|
||||||
&:after {
|
display: flex;
|
||||||
content: "";
|
align-items: center;
|
||||||
display: table;
|
|
||||||
clear: both;
|
div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-caritem-vin {
|
||||||
|
font-weight: 600;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: .25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display:inline-block;
|
|
||||||
margin:2px 0 2px 2px;
|
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
}
|
margin-right: .5em;
|
||||||
|
|
||||||
div {
|
|
||||||
font-size:14px;
|
|
||||||
float:right;
|
|
||||||
margin: 16px 6px 0 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</CodeHighlight>
|
</CodeHighlight>
|
||||||
|
|
Loading…
Reference in New Issue