89 lines
1.8 KiB
Vue
89 lines
1.8 KiB
Vue
<template>
|
|
<div class="summary1">
|
|
<div class="summary1-item" v-for="(item, index) in data" :key="index">
|
|
<h2>{{ item[keys] }}</h2>
|
|
<p>{{ item[value] }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'summary1',
|
|
|
|
props: {
|
|
data: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
|
|
keys: {
|
|
type: String,
|
|
default: 'key'
|
|
},
|
|
|
|
value: {
|
|
type: String,
|
|
default: 'value'
|
|
}
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.summary1 {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
div {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.summary1-item {
|
|
display: flex;
|
|
position: relative;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
width: 195px;
|
|
height: 180px;
|
|
padding-top: 58px;
|
|
background-image: url(https://cdn.cunwuyun.cn/dvcp/dv/dianjiang/number-bg.png);
|
|
background-size: 100% 100%;
|
|
|
|
h2 {
|
|
color: #fff;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
background-image: linear-gradient(
|
|
180deg,
|
|
rgba(255, 255, 255, 1) 0%,
|
|
rgba(235, 249, 255, 1) 36%,
|
|
rgba(53, 190, 255, 1) 100%
|
|
);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
p {
|
|
margin-top: 20px;
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
color: #8BCCFF;
|
|
background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 249, 255, 1) 36%, rgba(53, 190, 255, 1) 100% );
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
</style>
|