25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <view class="market">
- <!-- 券包 我的优惠券 -->
- <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
- <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
- </i-tabs>
- <view>
- <view class="nocoupon" wx:if="{{list.length==0}}">
- <image src="./../../../assets/img/cou.png" mode="widthFix" />
- <text>暂无优惠券可用</text>
- <navigator url="/pages/index/index" open-type="switchTab" hover-class="other-navigator-hover">
- <button>去领券</button>
- </navigator>
- </view>
-
- <view class='section' wx:for='{{list}}' wx:key='{{index}}' bindtap="gotouse" data-quancode="{{item.id}}" >
- <view class='detail_msg'>
- <view class='logo'>
- <image src='{{item.coverImg}}'></image>
- </view>
- <view class='info'>
- <view>
- <text>{{item.title}}</text>
- </view>
- <view>
- <text class="txt1">有效期至:</text>
- <text class="txt2">{{item.expiredTime}}</text>
- </view>
- <view wx:if="{{item.couponOrderStatus==0}}" class="btns" bindtap="gotouse" data-quancode="{{item.id}}">查看详情</view>
- <view wx:elif="{{item.couponOrderStatus==1||item.couponOrderStatus==2||item.couponOrderStatus==3}}" class="btns">查看</view>
- </view>
- </view>
- </view>
- <!-- <view class='imageBox'>
- <image src="../../../assets/img/parkCoupon.png"></image>
- <text class='text2'>2小时免费停车券</text>
- <text class='text5'>京A88888</text>
- <text class='text3'>2018-08-30</text>
- <text class='text6'>至</text>
- <text class='text4'>2018-09-30</text>
- <text class='text1'>朝阳大悦城</text>
- </view> -->
- </view>
- </view>
|