index.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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/dist/wxs/utils.wxs"></script>
  15. <script module="getters" lang="wxs" src="@/node_modules/@vant/weapp/dist/progress/index.wxs"></script>
  16. <script>
  17. import { VantComponent } from '../common/component';
  18. import { BLUE } from '../common/color';
  19. export default {
  20. data() {
  21. return {};
  22. },
  23. props: {
  24. inactive: Boolean,
  25. percentage: Number,
  26. pivotText: String,
  27. pivotColor: String,
  28. trackColor: String,
  29. showPivot: {
  30. type: Boolean,
  31. default: true
  32. },
  33. color: {
  34. type: String,
  35. default: BLUE
  36. },
  37. textColor: {
  38. type: String,
  39. default: '#fff'
  40. },
  41. strokeWidth: {
  42. type: null,
  43. default: 4
  44. }
  45. }
  46. };
  47. </script>
  48. <style>
  49. @import './index.css';
  50. </style>