Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <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>
|