@burh/nuxt-core 1.0.48 → 1.0.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="card h-100">
|
|
3
|
+
<div class="container-fluid container-fluid--bu pt-5">
|
|
4
|
+
<div class="">
|
|
5
|
+
<h4 class="card-title font-weight-bold">{{title}}</h4>
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<div class="row card-body px-0">
|
|
9
|
+
<div class="col-6 col-sm-3 col-md-3 info-box text-center px-0" v-for="items in coursesInfo" :key="items.name">
|
|
10
|
+
<img v-if="items.icon" :src="items.icon" style="width: 5rem"/>
|
|
11
|
+
<span v-if="items.number" :class="items.color ? items.color : ''" class="display-1 font-weight-bold">{{items.number}}</span>
|
|
12
|
+
<p v-if="items.name" :class="items.color ? items.color : ''">{{items.name}}</p>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|
|
18
|
+
<script>
|
|
19
|
+
export default {
|
|
20
|
+
data(){
|
|
21
|
+
return{
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
props:{
|
|
25
|
+
title: {
|
|
26
|
+
type: String,
|
|
27
|
+
default: 'Resumo geral'
|
|
28
|
+
},
|
|
29
|
+
coursesInfo: Array
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
</script>
|
|
33
|
+
<style lang="scss" scoped>
|
|
34
|
+
.card-title{
|
|
35
|
+
font-size: 1rem;
|
|
36
|
+
}
|
|
37
|
+
.info-box{
|
|
38
|
+
@media (min-width: 576px) {
|
|
39
|
+
flex: 0 0 50%;
|
|
40
|
+
max-width: 50%;
|
|
41
|
+
}
|
|
42
|
+
@media (min-width: 768px) {
|
|
43
|
+
flex: 0 0 50%;
|
|
44
|
+
max-width: 50%;
|
|
45
|
+
}
|
|
46
|
+
@media (min-width: 1024px) {
|
|
47
|
+
flex: 0 0 33%;
|
|
48
|
+
max-width: 33%;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
</style>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
v-for="item in modalData.envelopeDocuments.slice((currentPage-1)*pageSize,currentPage*pageSize)"
|
|
13
13
|
:key="item.id"
|
|
14
14
|
>
|
|
15
|
-
<div class="checklist-item checklist-item-info">
|
|
15
|
+
<div class="checklist-item checklist-item-info" :class="item.started_at ? 'checklist-item-checked' : ''">
|
|
16
16
|
<div class="checklist-info">
|
|
17
17
|
<h5 class="checklist-title mb-0">{{item.name}}</h5>
|
|
18
18
|
</div>
|