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.
 

34 lines
1.7 KiB

<!--pages/list/theatre/index.wxml-->
<!-- <wxs src="../../../../utils/filter.wxs" module="tool" /> -->
<title title="非遗手札"></title>
<view class="my-header-search" wx:if="{{headImg}}">
<image class="heaimg" src="{{headImg}}" mode="widthFix"></image>
</view>
<view class="content">
<view bindtap="gotoDetail" data-item="{{item}}" class="item" wx:for="{{list}}">
<image src="{{item.headimg}}" mode="aspectFill"></image>
<view class="info">
<view class="textOver2 title">{{item.title}}</view>
<view class="textOver subtitle">{{item.subtitle}}</view>
<view class="letter-user">
<view style="display: flex;align-items: center;">
<!-- <image style="width: 48rpx;height: 48rpx;margin-right: 8rpx;" src="{{item.avatar || 'https://static.ticket.sz-trip.com/tongli/images/index/user.png'}}" mode="aspectFill"></image>
<text>{{item.nickname}}</text> -->
</view>
<view style="display: flex;align-items: center;color: #848484;">
<text class="iconfont icon-aixin"></text>
<text class="icon-num" style="padding: 0 36rpx 0 8rpx;">{{item.like_number}}</text>
<text class="iconfont icon-eye"></text>
<text class="icon-num" style="padding-left: 8rpx;">{{item.view_number}}</text>
</view>
</view>
</view>
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1">
<image mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
<view>暂无内容</view>
</view>
</view>