Files
王鹏 0c2edb6036 init
2025-08-14 14:52:01 +08:00

40 lines
1.4 KiB
Plaintext

<!-- 轮播图区域 -->
<view class="card-blank">
<swiper indicator-dots autoplay interval="3000">
<block wx:for="{{carouselImgs}}" wx:key="index">
<swiper-item bindtap="leavFor" data-path="{{item.carouselArticle}}" style="border-radius: 4px;">
<image src="{{item.carouselPic}}" style="width: 100%;" />
</swiper-item>
</block>
</swiper>
</view>
<!-- 系统通知 -->
<!-- <view class=".card-blank">
<van-notice-bar left-icon="volume-o" background="#fff" color="#333" scrollable text="{{notice}}" />
</view> -->
<!-- 功能导航 -->
<!-- 功能列表 -->
<!-- <view class="card func">
<view class="func_item" wx:for="{{funcList}}" wx:key="index" bindtap="leavFor" data-path="{{item.path}}">
<view class="func_item_icon" style="background-color: {{item.color}};" >
<van-icon name="{{item.icon}}"/>
</view>
<text class="func_item_name">{{item.name}}</text>
</view>
</view> -->
<view class="card-blank new-article">
<view>
<van-icon name="new-arrival" size="26px" color="#3C9CFF" />
<text style="margin-left: 10px;">最新文章</text>
</view>
<text bindtap="leavFor" data-path="/pages/tabpages/find/find" class="more">查看更多</text>
</view>
<view class="card" wx:for="{{latestArticles}}" wx:key="index">
<article-card data="{{item}}" />
</view>
<van-empty wx:if="{{latestArticles.length==0}}" description="没有更多文章了~" />