123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <view>
- <view class="view-page">
- <navbar page-name="活动"></navbar>
- <view class="page-content" style='height:calc(100vh - {{navH}}px)'>
- <view class="margintopp"></view>
- <block wx:for="{{arr}}" wx:key="index">
- <block wx:if="{{arr[index].wp_isexpire == 'Y'}}">
- <view class="pmBox" bindtap="hrefPm" data-index="{{arr[index].wp_href}}">
- <view class="pmimgdiv">
- <image class="imagepic" src="{{arr[index].wp_url}}" bindload="finish"></image>
- </view>
- <view class="pmtextdiv">
- <view class="pmtext_left">
- <view class="pmdescription">二级标题</view>
- <view class="pmddate">注释文字</view>
- </view>
- <view class="pmtext_right">
- <view class="button_right">按钮文字</view>
- </view>
- </view>
- </view>
- </block>
- <block wx:if="{{arr[index].wp_isexpire == 'N'}}">
- <view class="pmBox" data-index="{{arr[index].wp_href}}">
- <view class="pmimgdiv">
- <image class="imagepic" src="{{arr[index].wp_url}}" bindload="finish"></image>
- </view>
- <view class="pmtextdiv">
- <view class="pmtext_left">
- <view class="pmdescription">二级标题</view>
- <view class="pmddate">注释文字</view>
- </view>
- <view class="pmtext_right">
- <view class="button_overdue">活动结束</view>
- </view>
- </view>
- </view>
- </block>
- </block>
- <div class="endbottom"> </div>
- </view>
- <tabbar _tabBarInd="{{3}}"></tabbar>
- </view>
- </view>
|