|
@@ -1,17 +1,19 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
+<div class="main">
|
|
|
<div>{{title}}</div>
|
|
|
<div class="content">
|
|
|
-
|
|
|
+ <div v-for="o in 10" :key="o">
|
|
|
+ <WindturbineMinCard status="1"></WindturbineMinCard>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="bottom"></div>
|
|
|
- </div>
|
|
|
+</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import WindturbineMinCard from './WindturbineMinCard.vue'
|
|
|
export default{
|
|
|
- name="MatrixCard",
|
|
|
+ name:"MatrixCard",
|
|
|
props:{
|
|
|
title:String,
|
|
|
},
|
|
@@ -24,9 +26,17 @@ export default{
|
|
|
<style scoped>
|
|
|
.content{
|
|
|
display: grid;
|
|
|
+ grid-template-columns: repeat(5,20%);
|
|
|
}
|
|
|
.bottom{
|
|
|
- border-bottom-width: 2px;
|
|
|
- border-color: #292929;
|
|
|
+ background-color: #292929;
|
|
|
+ width:100%;
|
|
|
+ height: 2px;
|
|
|
+ margin-top: 5px;
|
|
|
+}
|
|
|
+.main{
|
|
|
+ margin-bottom: 15px;
|
|
|
+ margin-left: 5px;
|
|
|
+ margin-right: 5px;
|
|
|
}
|
|
|
</style>
|