123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!--pages/collectPatent/collectPatent.wxml-->
- <navBar></navBar>
- <van-notify id="van-notify" />
- <wux-gallery id="wux-gallery" />
- <wux-refresher
- id="wux-refresher"
- bind:pulling="onPulling"
- bind:refresh="onRefresh"
- scrollTop="{{scrollTop}}"
- >
- <view class="collectPatent">
- <view class="head">
- <text>我的收藏专利</text>
- </view>
- <scroll-view wx:if="{{tableData.length>0}}" type="list" scroll-y class="main">
- <block wx:for="{{tableData}}" wx:key="index">
- <myCard edit="{{false}}">
- <view slot="head_left">
- <van-tag round color="#3f395c">{{index+ 1}}</van-tag> 专利号:{{item.appNo}}
- </view>
- <!-- <view slot="head_right">
- <van-checkbox-group value="{{ patentNoList }}" data-item="{{item}}" data-index="{{index}}" data-appNo="{{item.appNo}}" bind:change="changePatentNoList">
- <van-checkbox name="{{item.appNo}}"></van-checkbox>
- </van-checkbox-group>
- </view> -->
- <view>
- <swiper indicator-dots="{{true}}"
- autoplay="{{false}}" interval="{{2000}}" duration="{{500}}">
- <block wx:if="{{item.imageList && item.imageList.length>0}}" wx:for="{{item.imageList}}" wx:for-item="img" wx:key="index">
- <swiper-item>
- <view style="background-image: url('{{imgHttp+img.guid}}')" class="slide-image" data-current="{{img}}" data-imgList="{{item.imageList}}" bind:tap="previewImage"></view>
- <!-- <image src="{{imgHttp+img.guid}}" class="slide-image" data-current="{{img}}" data-imgList="{{item.systemFileList}}" bindtap="previewImage" mode="aspectFit"/> -->
- </swiper-item>
- </block>
- </swiper>
- <view wx:if="{{item.rightHolder && item.rightHolder.length>0}}">
- 专利权人:{{item.rightHolder[0]}}
- </view>
- </view>
- </myCard>
- </block>
- <view class="loadData" wx:if="{{total && tableData.length>0}}">
- <view wx:if="{{total>tableData.length}}" bind:tap="loadMore">加载更多</view>
- <wux-spin wux-class="spin" size="small" wx:elif="{{loading}}"/>
- <view wx:elif="{{total>10}}">没有更多了</view>
- </view>
- </scroll-view>
- <van-empty wx:else description="暂无数据" />
- </view>
- </wux-refresher>
|