123456789101112131415161718192021 |
- <!--index.wxml-->
- <van-notify id="van-notify" />
- <scroll-view class="scrollarea" scroll-y type="list">
- <view class="">
- <view class="content">
- <view class="img">
- <image class="img" src="/static/image/logo-3.png" mode=""/>
- </view>
- <view class="title">
- 跨境电商专利小助手
- </view>
- <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
- </view>
- <view class="btns">
- <block wx:for="{{btnList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
- <i-button custom-class="btn" color="{{item.color}}" data-type='{{item.type}}' bind:click='btnClick'>{{item.label}}</i-button>
- </block>
- </view>
- </view>
-
- </scroll-view>
|