This commit is contained in:
wpf 2024-03-05 17:26:25 +08:00
commit 9e0696c235

View File

@ -26,6 +26,7 @@
<view class="table-title">
<view class="table-title-cell">用户名称</view>
<view class="table-title-cell">用户ID</view>
<view class="table-title-cell">状态</view>
<view class="table-title-cell">采购金额</view>
<view class="table-title-cell">销售金额</view>
</view>
@ -34,8 +35,9 @@
<view class="scrollView-wrap">
<block v-for="(item,index) in list" :key="index">
<view class="table-con">
<view class="table-con-cell">{{item.real_name}}</view>
<view class="table-con-cell">{{item.real_name || '-'}}</view>
<view class="table-con-cell">{{item.uid}}</view>
<view class="table-con-cell">{{item.status == 0?'未入驻':'已入驻'}}</view>
<view class="table-con-cell red">{{item.buy_amount}}</view>
<view class="table-con-cell green">{{item.sale_amount}}</view>
</view>