72 lines
1.4 KiB
Plaintext
72 lines
1.4 KiB
Plaintext
<!--packageE/community_buying/buying_data/buying_data.wxml-->
|
|
|
|
<view class="header">
|
|
<view class="item">
|
|
<text class="num">{{pageData.orderTotalCount}}</text>
|
|
<text class="desc">订单总数(笔)</text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="num">¥{{pageData.totalIncome}}</text>
|
|
<text class="desc">本团总收入</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="brief">
|
|
<view class="item">
|
|
<text class="num">{{pageData.orderTodayCount}}</text>
|
|
<text class="desc">今日订单数(笔)</text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="num">{{pageData.todayUcount}}</text>
|
|
<text class="desc">参与人数(人)</text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="num">¥{{pageData.todayIncome}}</text>
|
|
<text class="desc">今日收入</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="container" wx:if="{{pageData.goodsList.length!=0}}">
|
|
<view class="h2">
|
|
<view class="left">
|
|
商品
|
|
</view>
|
|
<view class="right">
|
|
数量
|
|
</view>
|
|
</view>
|
|
|
|
<view class="item" wx:for="{{pageData.goodsList}}">
|
|
<view class="left">
|
|
{{item.title}}
|
|
</view>
|
|
<view class="right">
|
|
<progress style="width:80%" activeColor="#ffb643" percent="100" border-radius="15" stroke-width="15"/>
|
|
<text>已销售{{item.total}}件</text>
|
|
<progress style="width:60%;margin-top:0.563rem;" activeColor="#ff6643" percent="100" border-radius="15" stroke-width="15"/>
|
|
<text>收入¥{{item.price}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|