25 lines
906 B
Plaintext
25 lines
906 B
Plaintext
<view class="pindao-mask" wx:if="{{visible}}" catchtouchmove="preventMove">
|
||
<view class="pindao-panel" catchtap="preventMove">
|
||
<view class="pindao-head flexb">
|
||
<text class="pindao-title">{{title}}</text>
|
||
<view class="pindao-close" bindtap="onClose">×</view>
|
||
</view>
|
||
<view class="pindao-channel" wx:if="{{channelNo}}">
|
||
<text class="pindao-channel-label">频道号</text>
|
||
<text class="pindao-channel-no">{{channelNo}}</text>
|
||
</view>
|
||
<scroll-view class="pindao-scroll" scroll-y enhanced show-scrollbar="{{false}}">
|
||
<view wx:if="{{!images || images.length === 0}}" class="pindao-empty">暂无频道内容</view>
|
||
<image
|
||
wx:for="{{images}}"
|
||
wx:key="index"
|
||
class="pindao-img"
|
||
src="{{item}}"
|
||
mode="widthFix"
|
||
lazy-load="{{false}}"
|
||
show-menu-by-longpress
|
||
/>
|
||
</scroll-view>
|
||
</view>
|
||
</view>
|