store/packageG/morePlugin/morePlugin.wxml

31 lines
1.5 KiB
Plaintext

<!--packageG/morePlugin/morePlugin.wxml-->
<view class="morePlugin-box" wx:if="{{plugin.length > 0}}">
<view class="page-section-spacing" style="{{'position:fixed;top:0;width:100%;z-index:999;'}}">
<scroll-view class="scroll-view_H" scroll-x="true" style="width: 100%;padding: 20rpx 0;" scroll-into-view="{{currBox}}">
<view style="display: flex">
<view class="tab" wx:for="{{plugin}}" wx:key="index" wx:for-item="item" catchtap="taptest" data-ind="{{index}}" id="{{index?'tab'+index:'tab0'}}">
<view style="z-index:99;" class=" {{acindex == index?'active':''}}">{{item.name}}</view>
</view>
</view>
</scroll-view>
</view>
<scroll-view scroll-into-view="{{toview}}" scroll-y="true" style="height:100vh;" enhanced='true' bindscroll='bincroll'>
<view class="plugins-box template_2" id="{{index?'ind'+index:'ind0'}}" wx:for="{{plugin}}" wx:key="index" wx:for-item="item">
<view class="plugins-title">{{item.name}}</view>
<view class="plugin-items-box">
<block wx:for="{{item.plugin}}" wx:key="index" wx:for-item="icon">
<view class="plugin-items-icon" data-item="{{icon}}" catchtap="pluginGoto">
<icon class="iconfont {{icon.class}}"></icon>
<view>{{icon.title}}</view>
</view>
</block>
</view>
</view>
</scroll-view>
<!--海报-->
<qrcode isshow="{{isshow}}" showcarrfootBol="{{showcarrfootBol}}" iPnoneBottomBol="{{iPnoneBottomBol}}"></qrcode>
</view>