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>
- <view>
- <text class="title">交易明细:</text>
- </view>
- <view wx:for="{{data}}" wx:key="{{index}}">
- <view class='record clearfix record1'>
- <text>{{item.merchantName}}</text>
- <text>-{{item.payment/100}}元</text>
- </view>
- <view class='record clearfix record2'>
- <text>{{item.updateDate}}</text>
- <text>余额{{item.cardRemainAmount/100}}元</text>
- </view>
- </view>
- </view>
- </view>
|