Files
luos/resources/assets/js/components/dataViews/vueListView/VueList.vue

76 lines
1.6 KiB
Vue
Raw Normal View History

2021-07-13 15:10:59 +00:00
<template>
<div class="pm-vue-list">
<div
:class="item.INIT_DATE ? 'pm-case-unread' : 'pm-case-read'"
class="card pm-vue-list-inside"
@dblclick.prevent="dblClick"
>
<div class="list-body">
2021-07-13 15:10:59 +00:00
<slot> </slot>
</div>
</div>
</div>
</template>
<script>
export default {
name: "VueCardView",
2021-07-21 15:09:39 +00:00
props: ["item","options"],
2021-07-13 15:10:59 +00:00
data() {
return {};
},
methods: {
classBtn(cls) {
return "btn btn-slim btn-force-radius v-btn-header " + cls;
},
2021-07-21 17:13:46 +00:00
/**
* Event handler dbl click
*/
2021-07-21 15:09:39 +00:00
dblClick(event){
this.options.dblClick(event, this.item, this.options);
}
2021-07-13 15:10:59 +00:00
},
};
</script>
<style>
.pm-vue-list {
padding: 0.7rem 0.7rem 0rem 0.7rem;
}
.pm-vue-list-inside {
border-left: solid lightseagreen;
color: #212529;
background-color: #f8f9fa;
}
.pm-vue-list-inside:hover {
background-color: #cfd9e4;
}
.list-body {
height: 224px;
overflow-x: hidden;
flex: 1 1 auto;
min-height: 1px;
padding: 1.25rem;
}
.pm-case-read {
border-left: 15px solid transparent;
border-radius: 0.25rem;
border-width: 1px 1px 1px 15px;
background-image:
linear-gradient(white, white),
linear-gradient(to bottom, #70C6F3, #0099DC);
background-origin: border-box;
background-clip: content-box, border-box;
}
.pm-case-unread {
border-left: 15px solid transparent;
border-radius: 0.25rem;
border-width: 1px 1px 1px 15px;
background-image:
linear-gradient(white, white),
linear-gradient(to bottom, rgba(204,204,204,1),rgba(135,135,135,1));
background-origin: border-box;
background-clip: content-box, border-box;
}
2021-07-13 15:10:59 +00:00
</style>