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

113 lines
2.5 KiB

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