You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <view wx:if="{{showPage}}" class='notes'>
- <view wx:for="{{data}}" wx:key="{{index}}" class='list'>
- <view class='record clearfix record1'>
- <text class='fl'>{{item.merchantName}}</text>
- <text class='fr'>-{{item.deductionAmount/100}}元</text>
- </view>
- <view class='clearfix record2'>
- <text class='fl'>{{item.updateDate}}</text>
- <text class='fr'>余 {{item.cardRemainAmount/100}}元</text>
- </view>
- </view>
- <view class="dingdan" wx:if="{{data.length==0}}">
- <image src="{{dingdanUrl}}" mode="widthFix"></image>
- <text>暂无交易明细</text>
- </view>
- </view>
|