icon.wxml 739 B

12345678910111213141516171819
  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. <text class='icon-back'></text> 图标
  5. </navigator>
  6. </bar>
  7. </custom>
  8. <bar class="search fixed" style="top:{{CustomBar}}px">
  9. <view class='search-form round'>
  10. <text class="icon-search"></text>
  11. <input type="text" placeholder="搜索icon" confirm-type="search" bindinput='searchIcon'></input>
  12. </view>
  13. </bar>
  14. <list class="grid col-3">
  15. <item wx:for="{{icon}}" wx:key wx:if="{{item.isShow}}">
  16. <text class='icon-{{item.name}} lg text-gray'></text>
  17. <text>{{item.name}}</text>
  18. </item>
  19. </list>