123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="com-ele-quantity">
- <view v-if="quantity > 20" class="com-battery-frame-com" :style="'height: ' + height + '; width: ' + width">
- <view class="com-battry-header"></view>
- <view class="com-battery-body">
- <view class="com-quantity-percent" :style="'height: ' + quantity + '%'"></view>
- <view class="com-quantity-des">{{ quantity }}%</view>
- </view>
- </view>
- <view v-else class="com-battery-frame-com" :style="'height: ' + height + '; width: ' + width">
- <view class="com-battry-header"></view>
- <view class="com-battery-body">
- <view class="com-quantity-percent" :style="'height: ' + quantity + '%; background-color: rgb(247, 109, 29)'"></view>
- <view class="com-quantity-des" style="color: rgb(247, 109, 29)">{{ quantity }}%</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- // component/comEleQuantity/comEleQuantity.js
- export default {
- data() {
- return {
- height: '140rpx',
- width: '85rpx'
- };
- },
- /**
- * 组件的属性列表
- */
- props: {
- quantity: {
- type: Number,
- default: 70
- }
- },
- mounted() {
- // 处理小程序 ready 生命周期
- this.$nextTick(() => this.ready());
- },
- /**
- * 组件的方法列表
- */
- methods: {
- ready: function () {}
- },
- created: function () {}
- };
- </script>
- <style>
- @import './comEleQuantity.css';
- </style>
|