index.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="van-progress custom-class" :style="'height: ' + utils.addUnit(strokeWidth) + '; ' + (trackColor ? 'background: ' + trackColor : '')">
  3. <view class="van-progress__portion" :style="'width: ' + percentage + '%; background: ' + (inactive ? '#cacaca' : color)">
  4. <view
  5. v-if="showPivot && getters.text(pivotText, percentage)"
  6. :style="'color: ' + textColor + '; background: ' + (pivotColor ? pivotColor : inactive ? '#cacaca' : color)"
  7. class="van-progress__pivot"
  8. >
  9. {{ getters.text(pivotText, percentage) }}
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  15. <script module="getters" lang="wxs" src="@/node_modules/@vant/weapp/lib/progress/index.wxs"></script>
  16. <script>
  17. 'use strict';
  18. Object.defineProperty(exports, '__esModule', {
  19. value: true
  20. });
  21. var component_1 = require('../common/component');
  22. var color_1 = require('../common/color');
  23. component_1.VantComponent({
  24. props: {
  25. inactive: Boolean,
  26. percentage: Number,
  27. pivotText: String,
  28. pivotColor: String,
  29. trackColor: String,
  30. showPivot: {
  31. type: Boolean,
  32. value: true
  33. },
  34. color: {
  35. type: String,
  36. value: color_1.BLUE
  37. },
  38. textColor: {
  39. type: String,
  40. value: '#fff'
  41. },
  42. strokeWidth: {
  43. type: null,
  44. value: 4
  45. }
  46. }
  47. });
  48. </script>
  49. <style>
  50. @import './index.css';
  51. </style>