css 画一个步骤条,带箭头指向

<template>
    <div >
        <!-- class="container" -->
        <div v-for="(item,index) in combinationList" >
            <div style="display:flex;justify-content:space-between;">
            <div v-for="(it,idx) in item.items" :key="idx">
                      <div
                class="item"
                :key="index" >
                       
                <div style="display:flex;">
                    <tile
                        :key="idx" 
                        :id="it.id"
                        v-model="item.items[idx]"></tile>
                  // v-if="(item.items.length-1)!=idx"  最后一个不显示   向左指向性 
                    <div class="arrowContent" v-if="(item.items.length-1)!=idx">  
                        <el-image 
                            style=" width:50px; height:50px;"
                            class="arrowicone"
                            src="/img/project/rightflat.png"
                            :fit="fit">
                        </el-image>
                    </div>
                </div>
            </div>
            </div>
        </div>
          // v-if="(combinationList.length-1)!=index"  判断最后一个不显示 尾首指向线
         <pointingSrrow  v-if="(combinationList.length-1)!=index"></pointingSrrow>

        </div>
    </div>
</template>

<script>
  import func from "@/util/func";
export default {
    props: {
  
    },
    components: {

        tile: () => import('@/views/pjm/lifecycle/components/phases/components/phase/tileV2'),
    },
    data() {
        return {
            data: [{n:1},{n:2},{n:3},{n:4},{n:5},{n:6},{n:1},{n:2},{n:3},{n:4},{n:5},{n:6},{n:1},{n:2},{n:3},{n:4},{n:5},{n:6}], //原数据
            combinationList:[ //结构后的数据
            {group:0,items:[{n:1},{n:2},{n:3},]},
  {group:1,items:[{n:1},{n:2},{n:3},]},
  {group:2,items:[{n:1},{n:2},{n:3},]},
          ],
        }
    },
    watch: {
      
    },
    computed: { 
    },
    created() {

    },
    mounted() {

    },
    beforeDestroy() {

    },
    methods: {
      
        setData() {
            this.data = this.value.filter(item => {
                return item.pid === 0;
            });

            console.log('---transformArray---',func.transformArray(this.data,5))
            this.combinationList=func.transformArray(this.data,5) //结构后的数据
             console.log(' this.data----', this.data)
        },

        transformArray(array, size) {  
            const result = []; 
            for (let i = 0; i < array.length; i += size) {  
                const chunk = array.slice(i, i + size);  
                result.push({ group: i / size, items: chunk }); // 这里将当前组的索引作为键  
            }  
            return result;  
        },

    }
};
</script>

<style lang="scss" scoped>
.container {
    // box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;

    .item {
        //box-sizing: border-box;
        //flex: none;
        //padding: 10px;
        // position: relative;
        width:20%;
        // padding-bottom: 20px; 


    }

    
}

 .arrowContent{
            width:100%;
             position: relative;
            .arrowicone{
                position: absolute;
                top: 50%; 
                transform: translateY(-50%);
                left: 50%;  
                transform: translate(100%, -50%);
            }
        }

</style>

tile 组件 纯样式 ```

<template>
<el-card
:shadow="shadow"
:class="phaseClass"
@click.native.stop="handleClick"
>
<div class="container" :class="{ 'unActive': isUnActive}">
<div v-if="!isUnActive">
<div v-if="isUnAuth" :class="{'masking unAuth':isUnAuth }">
<i class=" el-icon-lock"> 暂无权限</i>
</div>
</div>

        <div class="badges">
            <el-badge type="danger" :value="count" v-if="count" class="top-end"></el-badge>
        </div>

        <div class="content">
            <i :class="phaseIcon"></i>
            <div>{{phaseName }}</div>
            <div>{{phaseDuration=='' ?'无 开始时间-无 结束时间':phaseDuration}}</div>
        </div>
    </div>
</el-card>

</template>

<script>

export default {

components: {
},
data() {
    return {

    }
},
watch: {

},
computed: {

},
created() {

},
mounted() {

},
beforeDestroy() {

},
methods: {
 
    },
}

};
</script>

<style lang="scss" scoped>
.el-card {
overflow: visible;

::v-deep .el-card__body {
    padding: 0;
}

}

.unActive {
color: #bcbec2;
border-color: #e9e9eb;
background: #f4f4f5 linear-gradient(
to bottom right,
rgba(244, 244, 245, 0.1) 0%,
rgba(244, 244, 245, 0.1) calc(50% - 2px),
rgba(200, 200, 200, 1) 50%,
rgba(244, 244, 245, 0.1) calc(50% + 2px),
rgba(244, 244, 245, 0.1) 100%
);
cursor: default !important;
}

.masking {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
right: 0;
left: 0;
border-radius: 1px;
color: #fff;
padding: 2px 0;
}

.masking.unAuth {
bottom: 0;
background-color: rgba(0, 0, 0, 0.4);
cursor: not-allowed;
}

.container {
position: relative;
padding: 10px;
cursor: pointer;

.badges {
    > .el-badge {
        position: absolute;

        ::v-deep sup {
            top: 0
        }
    }

    > .el-badge.top-start {
        top: 0;
        left: 0;
        transform: translateY(-50%);
    }

    > .el-badge.top {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    > .el-badge.top-end {
        top: 0;
        right: 0;
        transform: translateY(-50%);
    }

    > .el-badge.left {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    > .el-badge.right {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    > .el-badge.bottom-start {
        bottom: 0;
        left: 0;
        transform: translateY(50%);
    }

    > .el-badge.bottom {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
    }

    > .el-badge.bottom-end {
        bottom: 0;
        right: 0;
        transform: translateY(50%);
    }
}

.content {
    text-align: center;
    line-height: 1.5;

    > .iconfont-custom {
        font-size: 52px;
    }

    div {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.info {
    color: #909399;
    background: #f4f4f5;
    border-color: #d3d4d6;
}

.normal {
    color: #409eff;
    background: #ecf5ff;
    border-color: #b3d8ff;
}

.success {
    color: #67c23a;
    background: #f0f9eb;
    border-color: #c2e7b0;
}

.warning {
    color: #f56c6c;
}

.danger {
    color: #f56c6c;
    background: #fef0f0;
    border-color: #fbc4c4;
}

}
</style>

###效果图
![image.png](https://upload-images.jianshu.io/upload_images/16629650-a5dc576197ebf5ad.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容

  • 1. 黑白图像 这段代码会让你的彩色照片显示为黑白照片,是不是很酷? img.desaturate { fil...
    我家老公萌萌哒阅读 298评论 0 0
  • 背景 背景大小控制(注意:大小要写在背景属性后面) background-size:auto;/* 默认值,不改变...
    色即是猫阅读 363评论 0 0
  • 这里我工作中收集了10个很不错的CSS技巧,你可以用在你的项目上。它可以帮你很好地整理你的元素并让他们看起来蛮酷的...
    web前端03阅读 758评论 0 6
  • ●暗夜风格:E:/wjm/能耗监测管理系统/能耗监测网页pc版v2暗色版/index_night_layer.ht...
    流都阅读 168评论 0 0
  • 在PC版本浏览器上添加活动广告动画 一、html部分 二、css部分 .clearfix:after { co...
    蓝光梦想阅读 1,067评论 0 1