vue实现横向时间轴,并实现右滑加载数据

1、横向时间轴

 <template>
<div class="part-label-box">
                  <el-timeline class="time-line">
                    <el-timeline-item
                      class="line-item"
                      v-for="(activity, index) in planDetailsList"
                      :key="index"
                    >
                      <div class="title">{{ activity.actionDate }}</div>
                      <div class="image">
                        <el-image
                          style="width: 6vw; height: 4vw"
                          v-if="activity.actionTypeIcon"
                          :src="activity.actionTypeIcon"
                          :preview-src-list="[activity.actionTypeIcon]"
                          :initial-index="0"
                          fit="cover"
                          :preview-teleported="true"
                        />
                      </div>
                    </el-timeline-item>
                  </el-timeline>
                </div>
</template>
<style>
         .part-label-box {
                width: calc(100% - 6vw);
                height: 26vh;
                box-sizing: border-box;
                overflow-x: auto;
                padding-left: 1vw;

                .time-line {
                  display: flex;
                  margin: 1vw 0;
                  box-sizing: border-box;

                  .line-item {
                    min-width: 25%;
                    flex-shrink: 0;
                    display: flex;
                    flex-direction: column;

                    .title {
                      color: #01d8eb;
                      margin-bottom: 0.2vw;
                    }
                    .image {
                      width: 6vw;
                      height: 4vw;

                      img {
                        width: 100%;
                        height: 100%;
                      }
                    }
                  }
                }
              }

              :deep(.el-timeline-item__tail) {
                border-left: none;
                border-top: 2px solid #e4e7ed;
                width: 100%;
                position: absolute;
                top: 6px;
              }

              :deep(.el-timeline-item__wrapper) {
                padding-left: 0;
                position: absolute;
                top: 20px;
                transform: translateX(-50%);
                text-align: center;
              }

              :deep(.el-timeline-item__timestamp) {
                font-size: 14px;
              }

</style>

2、右滑加载数据

<script>
const pageState = reactive({
  listQuery: {
    page: 1,
    limit: 10,
  },
  total: 0,
});
function handleScroll() {
  const container = document.getElementById("part-box") as HTMLElement;
  if (container.scrollWidth - container.clientWidth <= container.scrollLeft) {
    if (planDetailsList.value.length < pageState.total) {
      pageState.listQuery.page++;
     //逻辑代码
    }
  }
}
</script>

<template>
  <div class="part-label-box" id="part-box" @scroll="handleScroll()">
 </div>
</template>
  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值