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 class='head'>
- <view class='titles'>{{cardDetail.title}}</view>
- <view class='titles clearfix'>
- <text class='fl'>{{cardDetail.expiredTime}}</text>
- <text class='fr'>余额:¥{{cardDetail.remainingAmount/100}}</text>
- </view>
- </view>
- <view class='notess'>
- <view>
- <text class='title'>购买须知</text>
- </view>
- <view>
- <text><text class='spot'></text>{{cardDetail.remark}}</text>
- </view>
- </view>
- <view>
- <text class='title'>适用门店:</text>
- <view class='posi'>
- <view class='posi_logo' wx:for="{{cardDetail.merchantVoList}}" wx:key="index">
- <view>
- <image src='{{item.merchantImgUrl}}'></image>
- </view>
- <view>
- <text>{{item.merchantName}}</text>
- <text>{{item.addr}}{{item.buildingName}}{{item.floorName}}</text>
- </view>
- <image bindtap='phone' data-merchantLinkPhone='{{item.merchantLinkPhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
- </view>
- </view>
- </view>
- <view>
- <text wx:if="{{data.length>0}}" class="title">交易明细:</text>
- <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>
|