sh-collapse-item.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view class="sh-collapse-box">
  3. <view class="collapse-head u-flex u-row-between">
  4. <view class="u-flex" @tap="onArrow">
  5. <image class="head-img" :src="avatar" mode=""></image>
  6. <view class="head-info">
  7. <view class="name-box u-flex">
  8. <view class="name-text">{{ name }}</view>
  9. <view class="grade-tag tag-box u-flex" v-if="level">
  10. <image v-show="level.image" class="tag-img" :src="level.image" mode=""></image>
  11. <text class="tag-title">{{ level.name }}</text>
  12. </view>
  13. </view>
  14. <view class="u-flex">
  15. <view class="head-time">{{ $u.timeFormat(dateTime, 'yyyy年mm月dd日') }}</view>
  16. <view class="child-num u-m-l-30">下级成员:{{ childNum }}人</view>
  17. </view>
  18. </view>
  19. </view>
  20. <button v-if="childNum" class="u-reset-button arrow-btn" :class="{ 'arrow-active': showUnfold }" @tap="onArrow">
  21. <view class="u-iconfont uicon-arrow-down u-m-l-20" style="color: #999;font-size: 26rpx;"></view>
  22. </button>
  23. </view>
  24. <slot v-if="showUnfold" name="collapse-children"></slot>
  25. </view>
  26. </template>
  27. <script>
  28. /**
  29. * 用户列表项
  30. * @property {String} avatar - 头像
  31. * @property {String} name - 昵称
  32. * @property {String} level - 等级
  33. * @property {String | Date} dateTime - 日期
  34. * @event {Function} click - 点击箭头
  35. */
  36. export default {
  37. name: 'sh-collapse-item',
  38. components: {},
  39. data() {
  40. return {};
  41. },
  42. props: {
  43. avatar: {
  44. type: String,
  45. default: ''
  46. },
  47. name: {
  48. type: String,
  49. default: ''
  50. },
  51. level: {
  52. type: Object,
  53. default: null
  54. },
  55. dateTime: {
  56. type: Number,
  57. default: 0
  58. },
  59. isUnfold: {
  60. type: Boolean,
  61. default: false
  62. },
  63. childNum: {
  64. type: Number,
  65. default: 0
  66. }
  67. },
  68. computed: {
  69. showUnfold: {
  70. get() {
  71. return this.isUnfold;
  72. },
  73. set(val) {
  74. return val;
  75. }
  76. }
  77. },
  78. methods: {
  79. onArrow() {
  80. this.$emit('click');
  81. }
  82. }
  83. };
  84. </script>
  85. <style lang="scss">
  86. .sh-collapse-box {
  87. background-color: #fff;
  88. .collapse-head {
  89. padding: 0rpx 28rpx;
  90. height: 132rpx;
  91. border-bottom: 1rpx solid #eee;
  92. .head-img {
  93. width: 66rpx;
  94. height: 66rpx;
  95. border-radius: 50%;
  96. margin-right: 45rpx;
  97. }
  98. .arrow-btn {
  99. background: none;
  100. padding: 0;
  101. color: #c4c4c4;
  102. transition: all linear 0.3s;
  103. }
  104. .arrow-active {
  105. transform: rotate(180deg);
  106. transform-origin: center center;
  107. transition: all linear 0.3s;
  108. }
  109. .head-info {
  110. .head-time,
  111. .child-num {
  112. font-size: 24rpx;
  113. font-weight: 400;
  114. color: #999999;
  115. }
  116. .name-box {
  117. margin-bottom: 12rpx;
  118. .name-text {
  119. font-size: 26rpx;
  120. font-weight: 500;
  121. color: #111111;
  122. }
  123. .tag-box {
  124. background: rgba(0, 0, 0, 0.2);
  125. border-radius: 21rpx;
  126. line-height: 30rpx;
  127. padding: 5rpx 10rpx;
  128. margin-left: 10rpx;
  129. .tag-img {
  130. width: 34rpx;
  131. height: 34rpx;
  132. margin-right: 6rpx;
  133. border-radius: 50%;
  134. }
  135. .tag-title {
  136. font-size: 18rpx;
  137. font-weight: 500;
  138. color: rgba(255, 255, 255, 1);
  139. line-height: 20rpx;
  140. }
  141. }
  142. }
  143. }
  144. }
  145. }
  146. </style>