只要是物业审核的进度,后面就要显示操作按钮
element ui step组件提供了三种插槽分别是icon
、title
、description
,下面我就是使用了description
插槽来处理这个问题的
<el-step
v-for="(item, index) in applicationProgressList"
:key="index"
:title="item.lable"
:description="item.startTime"
>
<template slot="description">
<div
class="downloadList"
v-if="item.lable.indexOf('物业') != -1"
@click="downLoadSheet"
>
<el-button type="primary">下载清单</el-button>
</div>
</template>
</el-step>
网友评论