Commit 1ff3a080 authored by 黄媛媛's avatar 黄媛媛

机票历史账单

parent aaa420b0
...@@ -90,7 +90,11 @@ ...@@ -90,7 +90,11 @@
¥ ¥
<span>{{item.PayMoney}}</span> <span>{{item.PayMoney}}</span>
</td> </td>
<td :class="Math.abs(item.Money-item.InCome)>0?'_color_red':''">¥{{Math.abs(item.Money-item.InCome)}}</td> <td :class="Math.abs(item.Money-item.InCome)>0?'_color_red':''">
<!-- ¥{{Math.abs(item.Money-item.InCome)}} -->
<span v-if="item.Money > item.InCome">{{(item.Money- item.InCome).toFixed(2)}}</span>
<span v-else>0</span>
</td>
<td> <td>
<span v-if="item.Status!=0" <span v-if="item.Status!=0"
:class="Math.abs(item.RealProfit)>0?'_color_red':''">¥{{Math.abs(item.RealProfit)}}</span> :class="Math.abs(item.RealProfit)>0?'_color_red':''">¥{{Math.abs(item.RealProfit)}}</span>
......
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