父组件调用

 <battery-icon :quantity=40  style="width:70px;"></battery-icon>

组件代码

<template>
  <div class="electric-panel" :class="bgClass">
    <div class="panel" :style="{transform: `rotate(${rotate}deg)`}">
      <div class="remainder" :style="{width: quantity +'%'}" />
    </div>
    <div v-show="showText" :style="{marginLeft: (parseFloat(rotate)? 0 : '10') + 'px'}"
      class="text">{{ quantity }}%</div>
  </div>

</template>

<script>
/**
 * 电池电量Icon
 */
export default {
  props: {
  	// 电量值
    quantity: {
      type: Number,
      default: 0
    },
    // 是否显示电量值
    showText: {
      type: Boolean,
      default: true
    },
    // 旋转角度
    rotate: {
      type: String,
      default: '0'
    }
  },
  computed: {
    bgClass() {
      if (this.quantity >= 50) {
        return 'success'
      }
      //  else if (this.quantity >= 15) {
      //   return 'warning'
      // }
      //  else if (this.quantity >= 1) {
      //   return 'danger'
      // } 
      else {
        return 'danger'
      }
    }
  }
}
</script>

<style lang="less" scoped>
@color-success: #34A94D;
// @color-warning: orange;
@color-danger: #FA3220 ;
.panel(@color) {
  .panel {
    border-color: @color;
    &:before {
      background: @color;
    }
    .remainder {
      background: @color;
    }
  }
  .text {
    color: @color;
  }
}
.electric-panel {
  display: flex;
  justify-content: center;
  align-items: center;

  .panel {
    box-sizing: border-box;
    width: 30px;
    height: 14px;
    position: relative;
    border: 2px solid #ccc;
    padding: 1px;
    border-radius: 3px;

    &::before {
      content: '';
      border-radius: 0 1px 1px 0;
      height: 6px;
      background: #ccc;
      width: 4px;
      position: absolute;
      top: 50%;
      right: -4px;
      transform: translateY(-50%);
    }

    .remainder {
      border-radius: 1px;
      position: relative;
      height: 100%;
      width: 0%;
      left: 0;
      top: 0;
      background: #fff;
    }
  }

  .text {
    text-align: left;
    width: 42px;
  }

  &.success {
    .panel(@color-success);
  }

  // &.warning {
  //   .panel(@color-warning);
  // }

  &.danger {
    .panel(@color-danger);
  }
}
</style>


Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐