Commit fbf84cdf authored by yaya's avatar yaya

feat: 时间线优化&包优化

parent 18177149
......@@ -33,7 +33,7 @@
</el-button>
</div>
<div class="consign_content">
<el-card class="box-card" style="width: 60%; height: calc(100vh - 200px)">
<el-card class="box-card" style="width: 55%; height: calc(100vh - 180px)">
<div slot="header" class="clearfix">
<span style="font-weight: bold">寄售单信息</span>
</div>
......@@ -63,17 +63,17 @@
</div>
</div>
</el-card>
<el-card class="box-card" style="width: 40%;height: calc(100vh - 200px);margin-left: 20px">
<el-card class="box-card" style="width: 45%;height: calc(100vh - 180px);margin-left: 20px">
<div slot="header" class="clearfix">
<span style="font-weight: bold">寄售单时间线</span>
</div>
<div style="height: calc(100vh - 280px)">
<el-steps :active="1" direction="vertical">
<div style="height: calc(100vh - 240px)">
<el-steps :active="1" direction="vertical" >
<el-step
v-for="(item, indexNumber) in consignSaleRecordVoList"
:key="indexNumber"
:title="item.content"
:description="(item.remark ? item.remark + '\n' : '' ) + item.createTime" />
:title="item.typeName"
:description="(item.content ? item.content + '\n' : '' ) + (item.remark ? item.remark + '\n' : '' ) + item.createTime" />
</el-steps>
</div>
</el-card>
......
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