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

111 lines
2.3 KiB

  1. <template>
  2. <view class="card report-card__view">
  3. <view class="card-header">
  4. <image class="card-header-bg" src="@/pages_order/static/report/report-card-header-bg.png" mode="scaleToFill"></image>
  5. <view class="flex card-header-content">
  6. <view class="avatar">
  7. <!-- todo -->
  8. <image class="avatar-img" src="@/pages_order/static/report/avatar.png" mode="scaleToFill"></image>
  9. </view>
  10. <view class="info">
  11. <!-- todo -->
  12. <view class="nickname">李星星</view>
  13. <view class="desc">
  14. <text class="age">25</text>
  15. <text class="gender"></text>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="card-content">
  21. <slot></slot>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. .card {
  31. width: 100%;
  32. background-image: linear-gradient(#F2EDFF, #FCFEFE);
  33. border: 8rpx solid #F9F7FF;
  34. border-bottom-left-radius: 64rpx;
  35. border-bottom-right-radius: 64rpx;
  36. box-sizing: border-box;
  37. position: relative;
  38. &-header {
  39. background-color: $uni-bg-color;
  40. width: calc(100% + 8rpx * 2);
  41. height: 240rpx;
  42. position: absolute;
  43. top: -8rpx;
  44. left: -8rpx;
  45. &-bg {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. &-content {
  50. position: absolute;
  51. top: 0;
  52. left: 0;
  53. width: 100%;
  54. height: 100%;
  55. padding: 0 32rpx;
  56. box-sizing: border-box;
  57. justify-content: flex-start;
  58. .avatar {
  59. width: 104rpx;
  60. height: 104rpx;
  61. border: 4rpx solid #FFFFFF;
  62. border-radius: 50%;
  63. overflow: hidden;
  64. &-img {
  65. width: 100%;
  66. height: 100%;
  67. }
  68. }
  69. .info {
  70. margin-left: 24rpx;
  71. .nickname {
  72. font-family: PingFang SC;
  73. font-weight: 600;
  74. font-size: 40rpx;
  75. line-height: 1.1;
  76. color: #252545;
  77. }
  78. .desc {
  79. margin-top: 8rpx;
  80. font-family: PingFang SC;
  81. font-weight: 400;
  82. font-size: 36rpx;
  83. line-height: 1.2;
  84. color: #252545CC;
  85. .gender {
  86. margin-left: 16rpx;
  87. }
  88. }
  89. }
  90. }
  91. }
  92. &-content {
  93. width: 100%;
  94. padding: 32rpx 24rpx 48rpx 24rpx;
  95. padding-top: 264rpx;
  96. box-sizing: border-box;
  97. }
  98. }
  99. </style>