Commit 4a311d9e authored by 罗超's avatar 罗超

修改

parent dd9b3b0b
<style>
.backflowMain{
width:90%;
margin:auto;
height:auto;
padding-left:30px;
border-left:1px solid #d1d1d1;
padding-bottom:15px;
}
.backflowMain .backflow_Top{
position: relative;
width:100%;
height:36px;
line-height: 36px;
}
.backflowMain .back_Circle{
width:36px;
height:36px;
background-color: #2961FE;
border-radius: 50%;
position: absolute;
text-align: center;
line-height: 36px;
left:-50px;
top:0;
color:#fff;
font-size: 12px;
}
.backflowMain .back_Name{
color:#2D2D2D;
font-weight: bold;
font-size:15px;
}
.backflowMain .back_OrderStatus{
padding:1px 5px;
background: #FEB528;
color:#fff;
font-size:12px;
margin-left:10px;
border-radius: 3px;
}
.backflowMain .back_Bottom{
height:auto;
margin:10px 0 0 10px;
padding-bottom:15px;
}
.backflowMain .back_subList{
display: flex;
align-items: center;
justify-content: space-between;
}
.backflowMain .back_Time{
color:#2D2D2D;
font-size: 12px;
}
.backflowMain .back_Names{
color:#2D2D2D;
font-size:14px;
}
.backflowMain .back_remark{
position: relative;
background-color: #EEEEEF;
min-height: 40px;
margin-top:13px;
padding:10px;
border-radius: 5px;
}
.back_Bottom:last-child, .backflowMain:last-child{
padding-bottom: 0;
}
.backflowMain .triangle_border_up{
width:0;
height:0;
border-width:0 7px 10px;
border-style:solid;
border-color:transparent transparent #EEEEEF;/*透明 透明 灰*/
margin:40px auto;
position: absolute;
top:-48px;
left:15px;
}
</style>
<template>
<div>
<div v-for="(item,index) in DataList">
<span>
<br/> {{item.AduitStatus}} {{item.NodeName}}
<span v-for="(subItem,subIndex) in item.SubList">
审核人 {{subItem.AduitName}}<br/>
备注 {{subItem.Description}}<br/>
时间 {{subItem.CreateTime}}<br/>
</span>
</span>
</div>
<div style="padding-bottom:120px;">
<div class="backflowMain" v-for="(item,index) in DataList" :key="index">
<div class="backflow_Top">
<div class="back_Circle">{{item.AduitStatus==2?'通过':item.AduitStatus}}</div>
<span class="back_Name">{{item.NodeName}}</span>
<span class="back_OrderStatus" v-if="item.AuditWayName">{{item.AuditWayName}}</span>
</div>
<div class="back_Bottom" v-for="(subItem,subIndex) in item.SubList" :key="subIndex">
<div class="back_subList">
<div>
<span class="back_Names">{{subItem.AduitName}}</span>
<span class="back_OrderStatus" style="background:#51BDA5" v-if="item.AuditWayName">{{subItem.AuditWayName}}</span>
</div>
<div class="back_Time">{{subItem.CreateTime}}</div>
</div>
<div class="back_remark">
<div class="triangle_border_up"></div>
{{subItem.Description}}
</div>
</div>
</div>
</div>
</template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment