| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <template>
- <view class="timeline-item">
- <view class="left-line">
- <slot name="icon">
- <view @click="iconClick" class="timeline-item-icon"
- :style="{'backgroundColor':color,'width':size+'px','height':size+'px'}">
- </view>
- </slot>
- <view v-if="showTail" class="timeline-item-tail"></view>
- </view>
- <view class="timeline-item-wrapper">
- <view class="time" @click="timeClick" :style="{'height':size+'px','lineHeight':(size>40?40:size)+'px'}">
- {{timestamp}}
- </view>
- <view class="item-body" @click="bodyClick">
- <view class="title" v-if="title!=''">
- {{title}}
- </view>
- <view class="desc" v-if="desc!=''">
- {{desc}}
- </view>
- <slot name="body"></slot>
- </view>
- </view>
- </view>
- </template>
- <script>
- /**
- *
- * @description 时间线
- * @property {Boolean} showTail 显示节点连接线
- * @property {String} timestamp 时间
- * @property {String} color 节点颜色
- * @property {String} title 标题
- * @property {String} desc 描述
- * @property {Number} size 节点大小(单位px,最大40)
- * @event {Function()} onIconClick 时间线图标点击事件
- * @event {Function()} onTimeClick 时间线时间点击事件
- * @event {Function()} onBodyClick 时间线内容点击事件
- */
- export default {
- name: "rxl-timeline-item",
- data() {
- return {}
- },
- props: {
- showTail: {
- type: Boolean,
- default: true
- },
- timestamp: {
- type: String,
- default: function() {
- return ""
- }
- },
- color: {
- type: String,
- default: function() {
- return null
- }
- },
- title: {
- type: String,
- default: function() {
- return ""
- }
- },
- desc: {
- type: String,
- default: function() {
- return ""
- }
- },
- size: {
- type: Number,
- default: function() {
- return 16
- }
- }
- },
- methods: {
- iconClick: function() {
- this.$emit("onIconClick")
- },
- timeClick: function() {
- this.$emit("onTimeClick")
- },
- bodyClick: function() {
- this.$emit("onBodyClick")
- }
- }
- }
- </script>
- <style lang="scss">
- .timeline-item {
- position: relative;
- padding-bottom: 20px;
- .left-line {
- position: absolute;
- height: 100%;
- display: flex;
- justify-content: flex-start;
- width: 40px;
- flex-direction: column;
- align-items: center;
- .timeline-item-tail {
- height: 100%;
- width: 2px;
- background-color: #e4e7ed;
- }
- .timeline-item-icon {
- background-color: #e4e7ed;
- border-radius: 50%;
- width: 12px;
- height: 12px;
- max-width: 40px;
- max-height: 40px;
- z-index: 10;
- }
- }
- .timeline-item-wrapper {
- position: relative;
- padding-left: 44px;
- .time {
- color: #606060;
- font-size: 26rpx;
- max-height: 40px;
- }
- .item-body {
- // background-color: #f6f7f8;
- // padding: 20rpx;
- margin-top: 30rpx;
- border-radius: 20rpx;
- // border-color: rgba(242, 242, 242, 1);
- // padding-inline-start: 30rpx;
- margin-right: 40rpx;
- .title {
- color: #199ED8;
- font-size: 32rpx;
- font-weight: 500;
- .title-text {
- display: inline-block;
- vertical-align: middle;
- padding-left: 10rpx;
- }
- }
- .desc {
- padding-inline-start: 30rpx;
- padding-top: 10rpx;
- color: #7f7f7f;
- font-size: 30rpx;
- }
- }
- }
- }
- </style>
|