You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<!--pages/pbService/appreciate/index.wxml-->
|
|
|
|
|
<title title="美图鉴赏"></title>
|
|
|
|
|
<view class="top-menus">
|
|
|
|
|
<view class="appreciate-types">
|
|
|
|
|
<view class="appreciate-type{{type==2?' active':''}}" bindtap="changeType" data-type="2">图片鉴赏</view>
|
|
|
|
|
<!-- <view wx:if="{{isTest===false}}" class="appreciate-type{{type==1?' active':''}}" bindtap="changeType" data-type="1">视频鉴赏</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tags">
|
|
|
|
|
<view bindtap="search" data-id="{{item.CatalogId}}" class="tag{{videoTagId==item.CatalogId?' active':''}}" wx:if="{{type==1}}" wx:for="{{videoTags}}">{{item.CatalogName}}</view>
|
|
|
|
|
<view bindtap="search" data-id="{{item.TagId}}" class="tag{{picTagId==item.TagId?' active':''}}" wx:if="{{type==2}}" wx:for="{{picTags}}">{{item.Name}}</view>
|
|
|
|
|
<!-- <view class="tag">艺术鉴赏</view> -->
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view style="height:180rpx"></view>
|
|
|
|
|
<view class="list">
|
|
|
|
|
<view bindtap="gotoDetail" data-info="{{item}}" class="item" wx:for="{{list}}">
|
|
|
|
|
<image lazy-load src="{{item.Cover || item.Thumbnail}}" mode="aspectFill"></image>
|
|
|
|
|
<view class="title textOver">{{item.Name}}</view>
|
|
|
|
|
<view class="subtitle textOver">{{item.CatalogName || item.Tag}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <view class="mask" wx:if="{{imgInfo}}" catchtouchmove="preventTouchMove">
|
|
|
|
|
<view class="mask-bg" bindtap="closeImg"></view>
|
|
|
|
|
<image lazy-load bindtap="closeImg" style="width:100%;height:100%;display:block" src="{{imgInfo.Pic}}" mode="aspectFit"></image>
|
|
|
|
|
</view> -->
|