ns-progress.vue 580 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="progress"><view class="progress-bar color-base-bg" ref="progress" :style="{ width: progress + '%' }"></view></view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {};
  8. },
  9. props: {
  10. progress: {
  11. type: [Number, String],
  12. default: 10
  13. }
  14. }
  15. };
  16. </script>
  17. <style lang="scss">
  18. .progress {
  19. height: 12rpx;
  20. overflow: hidden;
  21. background-color: #ccc;
  22. border-radius: 8rpx;
  23. }
  24. .progress-bar {
  25. float: left;
  26. height: 100%;
  27. font-size: $font-size-tag;
  28. line-height: 20px;
  29. color: #fff;
  30. text-align: center;
  31. transition: width 0.6s ease;
  32. }
  33. </style>