main
ihzero 2024-05-14 23:44:14 +08:00
parent 797840872e
commit b8f0005ea6
1 changed files with 6 additions and 2 deletions

View File

@ -24,15 +24,17 @@
</view>
</template>
<template v-else-if="isLotteryStore">
<view class="h-60rpx grid grid-cols-2">
<view class="h-60rpx grid grid-cols-3">
<view class="td">销售</view>
<view class="td">兑奖</view>
<view class="td">新增客户</view>
</view>
</template>
<template v-else>
<view class="h-60rpx grid grid-cols-2">
<view class="h-60rpx grid grid-cols-3">
<view class="td">销售</view>
<view class="td">支出</view>
<view class="td">新增客户</view>
</view>
</template>
</view>
@ -66,10 +68,12 @@
<template v-else-if="isLotteryStore">
<view class="flex-1 td h-60rpx flex-center">{{ item.ledger.sales }}</view>
<view class="flex-1 td h-60rpx flex-center">{{ item.ledger.expenditure }}</view>
<view class="flex-1 td h-60rpx flex-center">{{ item.ledger.new_customers }}</view>
</template>
<template v-else>
<view class="flex-1 td h-60rpx flex-center">{{ item.ledger.sales }}</view>
<view class="flex-1 td h-60rpx flex-center">{{ item.ledger.expenditure }}</view>
<view class="flex-1 td h-60rpx flex-center">{{ item.ledger.new_customers }}</view>
</template>
</view>