index.wxml 789 B

1234567891011121314151617181920
  1. <!--index.wxml-->
  2. <scroll-view class="scrollarea" scroll-y type="list">
  3. <view class="">
  4. <view class="content">
  5. <view class="img">
  6. <image class="img" src="/static/image/logo-3.png" mode=""/>
  7. </view>
  8. <view class="title">
  9. 跨境电商专利小助手
  10. </view>
  11. <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
  12. </view>
  13. <view class="btns">
  14. <block wx:for="{{btnList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
  15. <i-button custom-class="btn" color="{{item.color}}" data-type='{{item.type}}' bind:click='btnClick'>{{item.label}}</i-button>
  16. </block>
  17. </view>
  18. </view>
  19. </scroll-view>