optimize steps

to fixed steps line in other background-color problem
This commit is contained in:
mo.duan 2019-09-17 10:43:33 +08:00
parent 13492f7e7b
commit 98bd5fd443
2 changed files with 35 additions and 8 deletions

View file

@ -1,8 +1,13 @@
<style>
.ivu-steps{
background: greenyellow;
}
</style>
<template>
<div>
<Steps :current="index">
<!--<Step title="开始"></Step>-->
<Step v-for="(item, index) in activitiList" :title="item.approveUserName" :key="index" :content="item.startTime"></Step>
<Step v-for="(item, index) in activitiList" :title="item.approveUserName" :key="index"></Step>
<!--<Step title="结束"></Step>-->
</Steps>
<Button @click="change">change</Button>