|
|
@@ -363,10 +363,16 @@
|
|
|
<div class="detail-price_box" style="font-size: 32upx;">¥{{ parseFloat(detailInfo.realPrice)}}</div>
|
|
|
</tui-list-cell>
|
|
|
|
|
|
- <tui-list-cell class="line-cell" :hover="false" v-if="Number(detailInfo.profit)>0">
|
|
|
- <div class="tui-title">利润</div>
|
|
|
- <div class="detail-price_box" style="font-size: 32upx;">¥{{ detailInfo.profit?parseFloat(detailInfo.profit):0 }}</div>
|
|
|
- </tui-list-cell>
|
|
|
+ <block v-if="detailInfo.staffFinance==1">
|
|
|
+ <tui-list-cell class="line-cell" :hover="false">
|
|
|
+ <div class="tui-title" style="color:#CCCCCC;">成本</div>
|
|
|
+ <div class="detail-price_box" style="font-size:30upx;color:#CCCCCC;font-weight:normal;">¥{{ detailInfo.remainCost?parseFloat(detailInfo.remainCost):0 }}</div>
|
|
|
+ </tui-list-cell>
|
|
|
+ <tui-list-cell class="line-cell" :hover="false">
|
|
|
+ <div class="tui-title" style="color:#CCCCCC;">利润</div>
|
|
|
+ <div class="detail-price_box" style="font-size:30upx;color:#CCCCCC;font-weight:normal;">¥{{ detailInfo.profit?parseFloat(detailInfo.profit):0 }}</div>
|
|
|
+ </tui-list-cell>
|
|
|
+ </block>
|
|
|
|
|
|
</div>
|
|
|
</view>
|