shish 2 anos atrás
pai
commit
3d5d7af596
1 arquivos alterados com 11 adições e 3 exclusões
  1. 11 3
      ghsApp/src/admin/stat/customSale.vue

+ 11 - 3
ghsApp/src/admin/stat/customSale.vue

@@ -15,17 +15,25 @@
 			<view class="space-view ex-table">
 			<view class="space-view ex-table">
 				<block>
 				<block>
 					<t-table :headerBackgroundColor="'#F0F2F6'">
 					<t-table :headerBackgroundColor="'#F0F2F6'">
-						<t-tr header><t-th>客户</t-th><t-th>数量</t-th><t-th>金额</t-th></t-tr>
+						<t-tr header>
+							<t-th>客户</t-th>
+							<t-th>订单金额</t-th>
+							<t-th>退款金额</t-th>
+							<t-th>实际金额</t-th>
+							<t-th>订单数</t-th>
+						</t-tr>
 							<block v-if="profile.list && !$util.isEmpty(profile.list)">
 							<block v-if="profile.list && !$util.isEmpty(profile.list)">
 								<view v-for="(item, index) in profile.list" :key="index">
 								<view v-for="(item, index) in profile.list" :key="index">
 									<t-tr>
 									<t-tr>
 										<t-td><view style="color:#333333;font-size:28upx;">{{item.customName?item.customName:'-'}}</view></t-td>
 										<t-td><view style="color:#333333;font-size:28upx;">{{item.customName?item.customName:'-'}}</view></t-td>
-										<t-td><view style="color:#333333;font-size:28upx;">{{parseFloat(item.num)}}</view></t-td>
+										<t-td><view style="color:#333333;font-size:28upx;">¥{{parseFloat(item.orderPrice)}}</view></t-td>
+										<t-td><view style="color:#333333;font-size:28upx;">¥{{parseFloat(item.tkPrice)}}</view></t-td>
 										<t-td><view style="color:#333333;font-size:28upx;">¥{{parseFloat(item.amount)}}</view></t-td>
 										<t-td><view style="color:#333333;font-size:28upx;">¥{{parseFloat(item.amount)}}</view></t-td>
+										<t-td><view style="color:#333333;font-size:28upx;">{{parseFloat(item.num)}}</view></t-td>
 									</t-tr>
 									</t-tr>
 								</view>
 								</view>
 							</block>
 							</block>
-							<t-tr><t-td><view style="color:black;font-weight:bold;font-size:28upx;">{{profile.totalNum||0}}笔 ¥{{profile.totalAmount||0}}</view></t-td></t-tr>
+							<t-tr><t-td><view style="color:black;font-weight:bold;font-size:28upx;">{{profile.totalNum||0}}笔 实际金额¥{{profile.totalAmount||0}}</view></t-td></t-tr>
 					</t-table>
 					</t-table>
 				</block>
 				</block>
 			</view>
 			</view>