liiistem-miniapp/pages/home/home.wxml

31 lines
1.3 KiB
Text
Raw Normal View History

2025-09-16 13:41:49 +08:00
<view>
<t-swiper wx:if="{{swiperList.length > 0}}" current="{{current}}" autoplay="{{true}}" duration="{{500}}" height="{{180}}" interval="{{3000}}" list="{{swiperList}}" navigation="{{ { type: 'dots-bar' } }}" bind:click="onSwiperTap" />
<view class="title_bar" wx:if="{{list.length}}">
<view class="title" bind:tap="refresh">
公司动态
<t-icon name="refresh" size="28rpx" color="71737b"></t-icon>
</view>
<view class="btn" bind:tap="goMore">
查看全部
<t-icon name="chevron-right" size="28rpx" color="71737b"></t-icon>
</view>
</view>
<view class="list" wx:if="{{list.length}}">
<view class="item" wx:for="{{list}}" wx:key="id">
<view class="item-main" data-id="{{item.id}}" bind:tap="goDetail">
<t-image mode="aspectFill" src="{{cdnHost+item.poster}}" width="108" height="72" shape="round" />
<view class="right">
<view class="text">{{item.title}}</view>
<view class="info">
<view>{{item.create_time}}</view>
<view class="viewcnt">
<t-icon name="browse" size="28rpx" color="71737b"></t-icon>
{{item.view_cnt}}
</view>
</view>
</view>
</view>
<t-divider />
</view>
</view>
</view>