普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
734 B

  1. <template>
  2. <view class="progress__view">
  3. <view class="bar" :style="{ width: `${progress * 100 / total}%` }"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. progress: {
  10. type: Number,
  11. default: 0
  12. },
  13. total: {
  14. type: Number,
  15. default: 0
  16. },
  17. },
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. .progress__view {
  22. font-size: 0;
  23. width: 100%;
  24. height: 28rpx;
  25. background: #E1E0E6;
  26. border-radius: 14rpx;
  27. .bar {
  28. display: inline-block;
  29. height: 100%;
  30. background-image: linear-gradient(to right, #7451DE, #B1A4FF);
  31. border-top-left-radius: 14rpx;
  32. border-bottom-left-radius: 14rpx;
  33. box-shadow: 2rpx 2rpx 6rpx 0 #4000FF40;
  34. }
  35. }
  36. </style>