123456789101112131415161718192021222324252627282930313233 |
- <van-popup id='popup' show="{{ show }}" round custom-style="width: 90vw;height: 70vh;" z-index='999999999999999999'>
- <!-- bind:click-overlay='onClose' bind:close="onClose" -->
- <view class="box">
- <view class="head">
- <view class="title" bindtap="totop">
- {{lookItem.title}}
- </view>
- <view class="rep">
- <view class="rep-left">
- <van-tag wx:if="{{lookItem.classname}}" plain type="primary">{{lookItem.classname}}</van-tag>
- <view style="margin-left: 10rpx;">
- {{lookItem.createdate}}
- </view>
- </view>
- <view class="rep-right">
- <text class="iconfont icon-a-tonggaoliulanliang" style="margin-right: 8rpx;" />{{lookItem.readcount}}
- </view>
- </view>
- </view>
- <editor class="editor" style="height:{{height}}px;" id='editor' read-only />
- <view class="bottom">
- <view class="count">
- {{lookItem.rowindex}}/{{list.length}}
- </view>
- <view class="button-box">
- <van-button custom-class='button' wx:if="{{lookItem.rowindex!=1}}" plain type="info" id='previous' catchtap="changeLook">上一条</van-button>
- <view style="width: 20rpx;" />
- <van-button wx:if="{{lookItem.rowindex==list.length}}" custom-class='button' plain type="info" catchtap="changeLook">关闭</van-button>
- <van-button wx:else custom-class='button' plain type="info" id='next' catchtap="changeLook">下一条</van-button>
- </view>
- </view>
- </view>
- </van-popup>
|