88 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="summary12" :class="'summary12-' + theme">
 | 
						|
    <div class="summary12-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: 'summary6',
 | 
						|
 | 
						|
    props: {
 | 
						|
      data: {
 | 
						|
        type: Array,
 | 
						|
        default: () => []
 | 
						|
      },
 | 
						|
 | 
						|
      keys: {
 | 
						|
        type: String,
 | 
						|
        default: 'key'
 | 
						|
      },
 | 
						|
 | 
						|
      value: {
 | 
						|
        type: String,
 | 
						|
        default: 'value'
 | 
						|
      },
 | 
						|
 | 
						|
      theme: {
 | 
						|
        type: String,
 | 
						|
        default: '0'
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    data () {
 | 
						|
      return {
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    methods: {
 | 
						|
    }
 | 
						|
  }
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
  .summary12 {
 | 
						|
    display: flex;
 | 
						|
    flex-wrap: wrap;
 | 
						|
    justify-content: space-between;
 | 
						|
    align-items: center;
 | 
						|
    width: 100%;
 | 
						|
    height: 100%;
 | 
						|
 | 
						|
    div {
 | 
						|
      box-sizing: border-box;
 | 
						|
    }
 | 
						|
 | 
						|
    .summary12-item {
 | 
						|
      display: flex;
 | 
						|
      flex-direction: column;
 | 
						|
      justify-content: center;
 | 
						|
      text-align: left;
 | 
						|
 | 
						|
      h2 {
 | 
						|
        line-height: 20px;
 | 
						|
        margin-bottom: 12px;
 | 
						|
        color: #C4D8DB;
 | 
						|
        font-size: 16px;
 | 
						|
        font-weight: normal;
 | 
						|
      }
 | 
						|
 | 
						|
      p {
 | 
						|
        font-size: 44px;
 | 
						|
        color: #02FEFF;
 | 
						|
        font-weight: 700;
 | 
						|
        text-align: left;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    &.summary12-1 .summary12-item {
 | 
						|
      p {
 | 
						|
        color: #FAD88E;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
</style>
 |