大屏组件开发

This commit is contained in:
yanran200730
2023-03-10 10:05:02 +08:00
parent 84689f602b
commit 7c6a898bf0
6 changed files with 125 additions and 65 deletions

View File

@@ -18,6 +18,7 @@
import Summary10 from './components/Summary10'
import Summary11 from './components/Summary11'
import Summary12 from './components/Summary12'
import Summary13 from './components/Summary13'
export default {
name: 'AiDvSummary',
@@ -35,7 +36,8 @@
Summary9,
Summary10,
Summary11,
Summary12
Summary12,
Summary13
},
props: {

View File

@@ -0,0 +1,102 @@
<template>
<div class="summary13">
<div class="summary13-item" v-for="(item, index) in data" :key="index" v-if="index < 4">
<h2>{{ item[keys] }}</h2>
<p>{{ item[value] }}</p>
</div>
</div>
</template>
<script>
export default {
name: 'summary13',
props: {
data: {
type: Array,
default: () => []
},
keys: {
type: String,
default: 'key'
},
value: {
type: String,
default: 'value'
}
},
data () {
return {
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.summary13 {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
div {
box-sizing: border-box;
}
.summary13-item {
display: flex;
position: relative;
align-items: center;
justify-content: center;
width: 150px;
height: 40px;
text-align: center;
color: #fff;
font-size: 14px;
border: 1px solid #717171;
h2 {
color: #C4D8DB;
font-size: 14px;
font-weight: normal;
}
p {
color: #C4D8DB;
font-size: 14px;
}
&::after {
position: absolute;
left: -1px;
top: 50%;
z-index: 11;
width: 1px;
height: 10px;
transform: translateY(-50%);
background: #0c0c0c;
content: ' ';
}
&::before {
position: absolute;
right: - 1px;
top: 50%;
z-index: 11;
width: 1px;
height: 10px;
transform: translateY(-50%);
background: #0c0c0c;
content: ' ';
}
}
}
</style>