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.
62 lines
3.0 KiB
62 lines
3.0 KiB
<view class="grid-name">{{currentGridName}}</view>
|
|
|
|
<view class="g-bd" wx:if="{{ iniLoaded }}">
|
|
<view wx:if="{{ tagsList && tagsList.length > 0}}"
|
|
hidden="{{tagName}}"
|
|
class="tags-height">
|
|
<view hidden="{{filterTags.length <= 0}}" class="tags-filter a-fade-in">
|
|
<view class="tags-now">
|
|
<view class="tags-now-title">当前标签:</view>
|
|
<view class="tags-now-item on-item" wx:for="{{filterTags}}" wx:key="tagId" data-index="{{index}}" catch:tap="handleFilterDel">
|
|
{{ item.tagName }}
|
|
<image src="/assets/images/tag_del.png" />
|
|
</view>
|
|
</view>
|
|
<view class="tags-filter-list">
|
|
<view class="tags-now-item" wx:for="{{secondeTags}}" wx:key="tagId" data-index="{{index}}" catch:tap="handleSecondTag">
|
|
{{ item.tagName }}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view hidden="{{filterTags.length !== 0}}" class="tags-container a-fade-in">
|
|
<view class="tags-wrapper" style="{{tagsMore?'height:580rpx':''}}">
|
|
<scroll-view scroll-y="{{tagsMore}}"
|
|
bindscroll="tagScroll"
|
|
scroll-top="{{scrollTops}}"
|
|
class="tags-list tags-show {{tagsMore&&'tags-h590'}} {{hideMore&&!tagsMore&&'tags-after'}}"
|
|
scroll-anchoring="true"
|
|
data-name="list"
|
|
catchtouchmove="true">
|
|
<view class="tags-item-container" data-name="item">
|
|
<view class="tags-item"
|
|
wx:for="{{tagsList}}"
|
|
wx:key="id"
|
|
data-index="{{index}}"
|
|
catch:tap="handleFilterTag">
|
|
{{ item.tagName }}
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{!tagsMore && !hideMoreBtn}}" class="tags-more" catch:tap="handleTagsMore">
|
|
<image src="/assets/images/tags_more.png" />
|
|
<view class="tags-more-text">更多</view>
|
|
</view>
|
|
</scroll-view>
|
|
<view wx:if="{{tagsMore}}" class="tags-close" catch:tap="handleTagsMore">收起</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="m-swiper_list">
|
|
<!-- <list id="releasedList" wx:if="{{ iniLoaded }}" status="released" tags-status="{{tagsStatus}}" list-is-mock="{{ false }}" list-params="{{ listParams }}" list-url="{{ releasedUrl }}" /> -->
|
|
<list id="releasedList" wx:if="{{ iniLoaded }}"
|
|
status="released"
|
|
tags-status="{{tagsStatus}}"
|
|
list-is-mock="{{ false }}"
|
|
tags-list="{{tagIdList}}"
|
|
list-params="{{ listParams }}"
|
|
list-url="{{ releasedUrl }}" />
|
|
</view>
|
|
</view>
|
|
|
|
<loading id="loading"></loading>
|
|
<modal id="modal"></modal>
|