comEleQuantityHorizontal.vue 1.7 KB

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