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 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>
</view>
 |