comEleQuantity.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="com-ele-quantity">
  3. <view v-if="quantity > 20" class="com-battery-frame-com" :style="'height: ' + height + '; width: ' + width">
  4. <view class="com-battry-header"></view>
  5. <view class="com-battery-body">
  6. <view class="com-quantity-percent" :style="'height: ' + quantity + '%'"></view>
  7. <view class="com-quantity-des">{{ quantity }}%</view>
  8. </view>
  9. </view>
  10. <view v-else class="com-battery-frame-com" :style="'height: ' + height + '; width: ' + width">
  11. <view class="com-battry-header"></view>
  12. <view class="com-battery-body">
  13. <view class="com-quantity-percent" :style="'height: ' + quantity + '%; background-color: rgb(247, 109, 29)'"></view>
  14. <view class="com-quantity-des" style="color: rgb(247, 109, 29)">{{ quantity }}%</view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. // component/comEleQuantity/comEleQuantity.js
  21. export default {
  22. data() {
  23. return {
  24. height: '140rpx',
  25. width: '85rpx'
  26. };
  27. },
  28. /**
  29. * 组件的属性列表
  30. */
  31. props: {
  32. quantity: {
  33. type: Number,
  34. default: 70
  35. }
  36. },
  37. mounted() {
  38. // 处理小程序 ready 生命周期
  39. this.$nextTick(() => this.ready());
  40. },
  41. /**
  42. * 组件的方法列表
  43. */
  44. methods: {
  45. ready: function () {}
  46. },
  47. created: function () {}
  48. };
  49. </script>
  50. <style>
  51. @import './comEleQuantity.css';
  52. </style>