<el-card style="width: 100%;height: 300px;"> <el-carousel indicator-position="outside"> <el-carousel-item v-for="(item,index) in task" :key="index"> <div style="display: flex;justify-content: space-between"> <span style="float:left;margin-top: 34px;margin-left: 32px;width: 86px;font-size: 21px">等待处理</span> <div> <el-button size="mini" style="margin-top: 14px;margin-right: 10px;" type="primary" @click="ListClick">查看更多</el-button> </div> </div> <div style="clear: both"> <h1 style="margin-top:32px;float:left;width: 423px;height: 26px;margin-left: 32px;font-weight: bold;">订单名称:{{item.name}}</h1> <p style="float: right;margin-right: 10px">状态:{{item.status_name}}</p> </div> <div style="clear: both"> <p style="float:left;width: 275px;height: 21px;margin-left: 32px;">创建时间:{{item.created_at}}</p> </div> <div style="clear: both"> <p style="float:left;width: 275px;height: 21px;margin-left: 32px;">账号:{{item.account.name}}</p> </div> <el-button type="primary" style="float: right;margin-right: 10px" @click="ListClick">去审核</el-button> </el-carousel-item> </el-carousel> </el-card>