fxyk-status.vue 623 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="d-flex a-center">
  3. <view class="frame" :style="{'background-color': bgColor }"></view>
  4. <view class="text">{{ title }}</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. props: {
  10. // 文本内容
  11. title: {
  12. type: String,
  13. default: ''
  14. },
  15. // 框的背景颜色
  16. bgColor: {
  17. type: String,
  18. default: ''
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .frame {
  25. width: 30rpx;
  26. height: 30rpx;
  27. margin-right: 10rpx;
  28. margin-bottom: 5rpx;
  29. }
  30. .text {
  31. font-size: 19rpx;
  32. font-family: SimSun;
  33. font-weight: 400;
  34. line-height: 27rpx;
  35. color: #FFFFFF;
  36. }
  37. </style>