icon.wxml 753 B

12345678910111213141516171819202122
  1. <custom style="height:{{CustomBar}}px;">
  2. <bar class="fixed gradual-blue" style="height:{{CustomBar}}px;padding-top:{{StatusBar}}px;">
  3. <navigator class='action' open-type="navigateBack" delta="1" hover-class="none">
  4. <icon class='icon-back'/> 图标
  5. </navigator>
  6. <view class='action'>
  7. </view>
  8. </bar>
  9. </custom>
  10. <bar class="search fixed" style="top:{{CustomBar}}px">
  11. <view class='serach-form round'>
  12. <icon class="icon-search"/>
  13. <input type="text" placeholder="搜索icon" confirm-type="search" bindinput='searchIcon'/>
  14. </view>
  15. </bar>
  16. <list class="grid col-3">
  17. <item wx:for="{{icon}}" wx:key wx:if="{{item.isShow}}">
  18. <icon class='icon-{{item.name}} lg text-gray'/>
  19. <text>{{item.name}}</text>
  20. </item>
  21. </list>