106 lines
2.0 KiB
Vue
106 lines
2.0 KiB
Vue
<template>
|
|
<div class="summary10">
|
|
<div class="summary10-item" v-for="(item, index) in data" :key="index">
|
|
<p>{{ item[keys] }}</p>
|
|
<h2>{{ item[value] }}</h2>
|
|
<div class="corner left-top"></div>
|
|
<div class="corner right-top"></div>
|
|
<div class="corner left-bottom"></div>
|
|
<div class="corner right-bottom"></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Summary10',
|
|
|
|
props: {
|
|
data: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
|
|
keys: {
|
|
type: String,
|
|
default: 'key'
|
|
},
|
|
|
|
value: {
|
|
type: String,
|
|
default: 'value'
|
|
}
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.summary10 {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.summary10-item {
|
|
display: flex;
|
|
position: relative;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 210px;
|
|
height: 50px;
|
|
padding: 0 20px;
|
|
box-sizing: border-box;
|
|
box-shadow: 0 0 14px 10px rgba(32, 133, 255, 0.5) inset;
|
|
background: transparent;
|
|
|
|
.corner {
|
|
height: 18px;
|
|
width: 18px;
|
|
position: absolute;
|
|
display: block;
|
|
background-image: url(./../asset/corner.svg);
|
|
background-repeat: no-repeat;
|
|
}
|
|
.corner.left-top {
|
|
left: -6px;
|
|
top: -6px;
|
|
transform: rotateY(180deg);
|
|
}
|
|
.corner.right-top {
|
|
right: -6px;
|
|
top: -6px;
|
|
}
|
|
.corner.left-bottom {
|
|
left: -6px;
|
|
bottom: -6px;
|
|
transform: rotateX(180deg) rotateY(180deg);
|
|
}
|
|
.corner.right-bottom {
|
|
right: -6px;
|
|
bottom: -6px;
|
|
transform: rotateX(180deg);
|
|
}
|
|
|
|
h2 {
|
|
color: #fff;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
p {
|
|
line-height: 24px;
|
|
font-size: 14px;
|
|
color: #8BCCFF;
|
|
}
|
|
}
|
|
}
|
|
</style>
|