|
@@ -1,4 +1,80 @@
|
|
|
<!--pages/searchResults/searchResults.wxml-->
|
|
|
-<view>
|
|
|
- <view></view>
|
|
|
-</view>
|
|
|
+<navBar></navBar>
|
|
|
+<van-notify id="van-notify" />
|
|
|
+<myFloatButton count="{{10}}"></myFloatButton>
|
|
|
+<wux-refresher
|
|
|
+ id="wux-refresher"
|
|
|
+ bind:pulling="onPulling"
|
|
|
+ bind:refresh="onRefresh"
|
|
|
+ scrollTop="{{scrollTop}}"
|
|
|
+>
|
|
|
+<scroll-view scroll-y class="searchResults">
|
|
|
+ <view class="head">
|
|
|
+ <view class="img">
|
|
|
+ <image class="img" src="/static/image/logo-3.png" mode=""/>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <myInput value="{{keyword}}" placeholder="请输入产品相关关键词" bindchange="changeKeyword" bindsearch="search" bindclickInnerIcon="clickInnerIcon"></myInput>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="product">
|
|
|
+ <view class="product_head">
|
|
|
+ <view class="product_text">检索内容</view>
|
|
|
+ <view class="product_icon">
|
|
|
+ <view class="iconfont myIconguanzhu" data-index="{{index}}" bind:tap="open"></view>
|
|
|
+ <view class="iconfont myIconmonitor" data-index="{{index}}" bind:tap="control"></view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <swiper class="swiper" autoplay="{{true}}" interval="{{3000}}" duration="{{500}}" indicator-dots="{{false}}">
|
|
|
+ <block wx:if="{{product.systemFileList && product.systemFileList.length>0}}">
|
|
|
+ <swiper-item wx:for="{{product.systemFileList}}" wx:for-item="img" wx:key="*this">
|
|
|
+ <image src="{{imgHttp+img.guid}}" class="slide-image" />
|
|
|
+ <!-- <image src="{{imgHttp+img.guid}}" class="slide-image" data-current="{{img}}" data-imgList="{{item.systemFileList}}" bindtap="previewImage"/> -->
|
|
|
+ </swiper-item>
|
|
|
+ </block>
|
|
|
+ <swiper-item wx:else>
|
|
|
+ <image class="slide-image" src="/static/image/empty.gif" mode=""/>
|
|
|
+ </swiper-item>
|
|
|
+ </swiper>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <van-divider dashed />
|
|
|
+ <view class="content">
|
|
|
+ <view class="content_head">
|
|
|
+ <view class="content_head_description">注:非会员可选择100条</view>
|
|
|
+ <view class="content_head_result">
|
|
|
+ <view class="content_head_result_description">以下是您的检索结果:</view>
|
|
|
+ <view class="content_head_result_btn" bind:tap="export">
|
|
|
+ 一键导出
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="content_result">
|
|
|
+ <block wx:for="{{tableData}}" wx:key="index">
|
|
|
+ <myCard edit="{{false}}">
|
|
|
+ <view slot="head_left">
|
|
|
+ {{index}}{{item.name}}
|
|
|
+ </view>
|
|
|
+ <view slot="head_right">
|
|
|
+ <van-radio name="2"></van-radio>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <swiper indicator-dots="{{true}}"
|
|
|
+ autoplay="{{true}}" interval="{{2000}}" duration="{{500}}">
|
|
|
+ <block wx:for="{{item.systemFileList}}" wx:for-item="img" wx:key="*this">
|
|
|
+ <swiper-item>
|
|
|
+ <image src="{{imgHttp+img.guid}}" class="slide-image" data-current="{{img}}" data-imgList="{{item.systemFileList}}" bindtap="previewImage"/>
|
|
|
+ </swiper-item>
|
|
|
+ </block>
|
|
|
+ </swiper>
|
|
|
+ <view>
|
|
|
+ 专利权人:
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </myCard>
|
|
|
+ </block>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</scroll-view>
|
|
|
+</wux-refresher>
|