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.
47 lines
2.3 KiB
47 lines
2.3 KiB
<!--pages/material/subpage/newest/newest.wxml-->
|
|
<view class="main">
|
|
<!-- 搜索栏 -->
|
|
<view class="search">
|
|
<searchbar placeholder="请输入素材名称" bind:handleSearch="handleSearch"></searchbar>
|
|
</view>
|
|
<!-- 导航栏 -->
|
|
<view class="wrap">
|
|
<view wx:for="{{navItem}}" wx:key="index" class="item {{item.is?'active':''}}" data-id="{{item.id}}" bind:tap="handleClick">
|
|
{{item.name}}
|
|
</view>
|
|
</view>
|
|
<!-- 导航栏选项 -->
|
|
<view class="selectWrap {{showOrHide?'slidown':'slidup'}}">
|
|
<view class="selectItem {{item.is?'active':''}}" wx:for="{{selectedItem}}" wx:key="index" data-contant="{{item.name}}" data-id="{{index}}" bind:tap="closeMask">
|
|
{{item.name}}
|
|
</view>
|
|
</view>
|
|
<!-- 遮罩层 -->
|
|
<view class="{{showOrHide?'shadow':''}}" bind:tap="closeMask" />
|
|
<!-- 素材展示 -->
|
|
<view class="mat">
|
|
<view class="mat_card" wx:for="{{listdata}}" wx:key="index" data-day="{{index}}">
|
|
<view class="card_top">
|
|
{{item.time}}
|
|
<button class="allin" wx:if="{{choose}}" data-index="{{index}}" bindtap="chooseall">{{item.all?'全不选':'全选'}}</button>
|
|
</view>
|
|
<view class="cards">
|
|
<!-- <view class="card" wx:for="{{item.refrence}}" wx:key="index" data-item="{{item}}" data-in="{{index}}" data-url="/pages/lookup/loockvideo/video" bindtap="to" capture-bind:longtap="tochoose"> -->
|
|
<view class="card" wx:for="{{item.refrence}}" wx:key="index" data-item="{{item}}" data-in="{{index}}" bindtap="to">
|
|
<!-- 封面图片 -->
|
|
<image mode="aspectFill" style="width: 144rpx;height: 144rpx;border-radius: 8rpx;" src="{{item.type===1?cdn+item.coverUrl:cdn+item.fileUrl}}"></image>
|
|
<!-- 左下角播放时长 -->
|
|
<!-- <view class="time">
|
|
<image style="width: 16rpx;height: 18rpx;margin-right: 5rpx;" src="/images/img_bofang@2x.png"></image>03:32
|
|
</view> -->
|
|
<!-- 收藏标志 -->
|
|
<!-- <image class="shouca" src="/images/ic_shouc@2x.png"></image> -->
|
|
<!-- 多选 -->
|
|
<view wx:if="{{choose}}" wx:key="index" class="choose {{item.choose?'active':'non'}}" data-data="{{item}}" data-index="{{index}}" catchtap="choose"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 加载更多 -->
|
|
<button style="color: #D0D0D0;" bindtap="getmore">加载更多</button>
|
|
</view>
|
|
</view> |