123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view class="mix-timeline">
- <view class="cell" v-for="(item, index) in list" :key="index">
- <view class="left column center">
- <text class="time">{{ item.time | date('H:i') }}</text>
- <text class="date">{{ item.time | date('m/d') }}</text>
- </view>
- <view class="cen center">
- <view class="circle center"></view>
- </view>
- <view class="right column">
- <text class="title">{{ item.title }}</text>
- <text v-if="item.tip" class="tip">{{ item.tip }}</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- /**
- * 时间轴
- * {
- * title: 标题
- * tip: 小字
- * time: 时间戳
- * }
- */
- export default {
- data() {
- return {
-
- };
- },
- props: {
- list: {
- type: Array,
- default(){
- return []
- }
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .mix-timeline{
-
- }
- .cell{
- display: flex;
- align-items: flex-start;
- width: 100%;
- padding: 0 30rpx 0;
-
- &:first-child .circle{
- &:before{
- background-color: $base-color;
- }
- &:after{
- content: '';
- position: absolute;
- width: 28rpx;
- height: 28rpx;
- background-color: #f9e0eb;
- border-radius: 100rpx;
- }
- }
- &:last-child .right:before{
- display: none;
- }
- }
- .left{
-
- .time{
- font-size: 26rpx;
- color: #333;
- line-height: 44rpx;
- }
- .date{
- font-size: 20rpx;
- color: #333;
- }
- }
- .cen{
- width: 80rpx;
- height: 44rpx;
-
- .circle{
- width: 16rpx;
- height: 16rpx;
- position: relative;
- z-index: 1;
-
- &:before{
- content: '';
- width: 16rpx;
- height: 16rpx;
- background-color: #ddd;
- border-radius: 100rpx;
- position: relative;
- z-index: 5;
- }
- }
- }
- .right{
- flex: 1;
- padding-bottom: 30rpx;
- position: relative;
- min-height: 96rpx;
-
- &:before{
- content: '';
- width: 2rpx;
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- background-color: #ddd;
- transform: translate(-42rpx, 22rpx);
- }
- .title{
- font-size: 28rpx;
- color: #333;
- line-height: 44rpx;
- font-weight: 700;
- }
- .tip{
- margin-top: 6rpx;
- font-size: 24rpx;
- color: #999;
- line-height: 36rpx;
- }
- }
-
- </style>
|