Commit 9d9da8e8 authored by youjie's avatar youjie

no message

parent 9f0f0f8e
......@@ -32,7 +32,7 @@
}
.orderAllList-top div{
width: 25%;
width: 33.33%;
float: left;
}
.orderAllList-top span{
......@@ -250,6 +250,14 @@
<span>待收</span>
<span :class="{'red':item.DueInMoney>0}">{{item.DueInMoney}}</span>
</div>
<div>
<span>预期利润</span>
<span>{{item.OrderProfit}}</span>
</div>
<div>
<span>预期销售额</span>
<span>{{item.OrderSalesMoney}}</span>
</div>
<div>
<span>报名数</span>
<span class="blue">{{item.GuestNum}}</span>
......
......@@ -124,6 +124,9 @@
</template>
</el-table-column>
<el-table-column sortable prop="OrderProfit" label="预期利润" min-width="100">
<template slot-scope="scope">
<span :class="{'red':scope.row.OrderProfit<0}">{{scope.row.OrderProfit}}</span>
</template>
</el-table-column>
<el-table-column
sortable
......
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