index.wxml 820 B

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