普兆健康管家前端代码仓库
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.

48 lines
739 B

  1. <template>
  2. <view class="header">
  3. <view class="title">
  4. <slot name="title">
  5. {{ title }}
  6. </slot>
  7. </view>
  8. <view class="desc">
  9. {{ desc }}
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. props: {
  16. title: {
  17. type: String,
  18. default: '',
  19. },
  20. desc: {
  21. type: String,
  22. default: '',
  23. },
  24. },
  25. }
  26. </script>
  27. <style scoped lang="scss">
  28. .header {
  29. padding: 0 32rpx;
  30. }
  31. .title {
  32. font-size: 48rpx;
  33. font-family: PingFang SC;
  34. font-weight: 600;
  35. line-height: 1.4;
  36. color: #252545;
  37. }
  38. .desc {
  39. font-size: 26rpx;
  40. font-family: PingFang SC;
  41. font-weight: 400;
  42. line-height: 1.4;
  43. color: #252545;
  44. }
  45. </style>