progressView.vue 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="container-view">
  3. <!-- 圆环进度条 -->
  4. <view class="blockOut">
  5. <view :style="'transform: rotate('+(soc*180/100-135)+'deg);'" :class="status==1?'block block-b rotate1':'block block-o rotate1'"></view>
  6. </view>
  7. <view class="quantity">
  8. {{soc}} <text class="quantity-pop">%</text>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. var common = require('../../common/common.js');
  14. export default {
  15. data() {
  16. return {
  17. };
  18. },
  19. props: {
  20. soc: {
  21. default: 0
  22. },
  23. status:{
  24. default: 0
  25. }
  26. },
  27. /**
  28. * 生命周期函数--监听页面加载
  29. */
  30. onLoad: function(options) {
  31. },
  32. /**
  33. * 生命周期函数--监听页面显示
  34. */
  35. onShow: function() {
  36. },
  37. methods: {
  38. }
  39. };
  40. </script>
  41. <style>
  42. @import './progressView.css';
  43. </style>