1234567891011121314151617181920 |
- <!--index.wxml-->
- <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>
|