Files
quantulr cf3e2db09d bugfix
2023-09-01 17:14:27 +08:00

10 lines
448 B
Plaintext

<!--components/statistics-card/index.wxml-->
<wxs module="number" src="../../utils/number.wxs" />
<view class="statistcs-card">
<view wx:for="{{statisticsData}}" wx:key="key" wx:for-item="value" class="statistcs-item">
<!-- <view class="value" wx:if="{{value.type=='money'}}">{{number.formatAmount(value.value)}}万元</view> -->
<view class="value">{{value.value}}</view>
<view class="title">{{value.label}}</view>
</view>
</view>