123456789101112131415161718 |
- <!--pages/previousEditions/index.wxml-->
- <scroll-view class="scrollarea" scroll-y type="list">
- <view class="index_main">
- <Container style="margin-top: -100rpx;">
- <view class="list" wx:if="{{list.length}}">
- <view class="item_bg" bind:tap="toNext" data-index="{{index}}" wx:for="{{list}}" wx:key="index">
- <view class="item">
- <image mode="aspectFit" class="item_image" wx:if="{{item.cover}}" src="{{item.cover}}" />
- <view class="title">{{item.title}}</view>
- </view>
- <image wx:if="{{index <= list.length - 1}}" class="image" src="../../images/Line.png" bindload="loadimge" style="{{'height:' + line_height + 'px'}}" />
- </view>
- </view>
- <van-empty description="暂无数据" wx:else />
- </Container>
- <image show-menu-by-longpress="{{true}}" src="https://cxzx.smcic.net/topic/tool/img/%E5%B0%91%E5%84%BF%E4%B9%A6%E7%94%BB%E5%A4%A7%E8%B5%9B/xbwjy.png" style="width: 750rpx;height: 343rpx;display: block;margin: 30rpx auto 0 auto;" />
- </view>
- </scroll-view>
|