|
|
@@ -32,7 +32,15 @@
|
|
|
<view style="font-weight:bold;color:black;font-size:32upx;">利润 ¥{{profit.balance||0}}</view>
|
|
|
</t-td>
|
|
|
</t-tr>
|
|
|
-
|
|
|
+ <block v-if="profit.wastagePrice && Number(profit.wastagePrice)>0">
|
|
|
+ <t-tr>
|
|
|
+ <t-td align="center">
|
|
|
+ <view style="color:red;font-size:30upx;">
|
|
|
+ 其中由于花材损耗,少赚了 ¥{{profit.wastagePrice||0}}
|
|
|
+ </view>
|
|
|
+ </t-td>
|
|
|
+ </t-tr>
|
|
|
+ </block>
|
|
|
</t-table>
|
|
|
</block>
|
|
|
</view>
|
|
|
@@ -72,6 +80,7 @@ export default {
|
|
|
startTime: "",
|
|
|
endTime: "",
|
|
|
shopId: "",
|
|
|
+
|
|
|
},
|
|
|
profit:[],
|
|
|
};
|