Browse Source

no message

feature/v2.1
xpz2018 4 years ago
parent
commit
2c0d3caac0
3 changed files with 6 additions and 5 deletions
  1. 6
      xtends/statics/gross-report/index.wxml
  2. 3
      xtends/statics/purchase-report/index.wxml
  3. 2
      xtends/statics/sale-report/index.wxml

6
xtends/statics/gross-report/index.wxml

@ -16,17 +16,17 @@
</view> </view>
<view class="bg-white flex" style="height:120rpx;padding-top:24rpx;"> <view class="bg-white flex" style="height:120rpx;padding-top:24rpx;">
<view style="width:320rpx;padding-left:48rpx"> <view style="width:320rpx;padding-left:48rpx">
<view class="text-xxl text-bold" style="color:#008AFF">{{formate.numberFormat(reportInfo.totalSalesPrice || 0)}}</view>
<view class="text-xxl text-bold" style="color:#008AFF">{{formate.formateAmount(reportInfo.totalSalesPrice || 0)}}</view>
<view class="text-black text-sm">总支出(元)</view> <view class="text-black text-sm">总支出(元)</view>
</view> </view>
<view style="width:300rpx;"> <view style="width:300rpx;">
<view class="text-xxl text-bold" style="color:#008AFF">{{formate.numberFormat(reportInfo.totalReceiptPrice || 0)}}</view>
<view class="text-xxl text-bold" style="color:#008AFF">{{formate.formateAmount(reportInfo.totalReceiptPrice || 0)}}</view>
<view class="text-black text-sm">总收入(元)</view> <view class="text-black text-sm">总收入(元)</view>
</view> </view>
</view> </view>
<view class="bg-white flex" style="height:120rpx;padding-top:8rpx"> <view class="bg-white flex" style="height:120rpx;padding-top:8rpx">
<view style="width:320rpx;padding-left:48rpx"> <view style="width:320rpx;padding-left:48rpx">
<view class="text-xxl text-bold" style="color:#008AFF">{{formate.numberFormat(reportInfo.totalGrossProfit || 0)}}</view>
<view class="text-xxl text-bold" style="color:#008AFF">{{formate.formateAmount(reportInfo.totalGrossProfit || 0)}}</view>
<view class="text-black text-sm">总毛利(元)</view> <view class="text-black text-sm">总毛利(元)</view>
</view> </view>
<view style="width:300rpx;"> <view style="width:300rpx;">

3
xtends/statics/purchase-report/index.wxml

@ -1,4 +1,5 @@
<!--xtends//statics/index/index.wxml--> <!--xtends//statics/index/index.wxml-->
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
<cu-custom bgColor="bg-white" isBack="{{true}}"> <cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">收货报表</view> <view slot="content">收货报表</view>
</cu-custom> </cu-custom>
@ -19,7 +20,7 @@
<view class="text-black text-sm">重量(公斤)</view> <view class="text-black text-sm">重量(公斤)</view>
</view> </view>
<view style="width:300rpx;"> <view style="width:300rpx;">
<view class="text-xxl text-bold" style="color:#278CC8">{{reportInfo.totalSettlePrice || 0}}</view>
<view class="text-xxl text-bold" style="color:#278CC8">{{formate.formateAmount(reportInfo.totalSettlePrice || 0)}}</view>
<view class="text-black text-sm">合计金额(元)</view> <view class="text-black text-sm">合计金额(元)</view>
</view> </view>
</view> </view>

2
xtends/statics/sale-report/index.wxml

@ -30,7 +30,7 @@
<view class="text-black text-sm">出货车数(车)</view> <view class="text-black text-sm">出货车数(车)</view>
</view> </view>
<view style="width:300rpx;"> <view style="width:300rpx;">
<view class="text-xxl text-bold" style="color:#278CC8">{{reportInfo.totalSettlePrice || 0}}</view>
<view class="text-xxl text-bold" style="color:#278CC8">{{formate.formateAmount(reportInfo.totalSettlePrice || 0)}}</view>
<view class="text-black text-sm">金额(元)</view> <view class="text-black text-sm">金额(元)</view>
</view> </view>
</view> </view>

Loading…
Cancel
Save