26 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-06-06 15:17:30 +08:00
<!--subpackage/student/talk/talk.wxml-->
<view class="page-content">
<mp-bar background="linear-gradient(190deg, #49a5fc 0%, #f7f7f7 800rpx, #f7f7f7 100%)" title="资讯" color="#fff" back="{{false}}"></mp-bar>
<view class="login-content">
<block wx:for="{{homeworkList}}" wx:key="id">
<view class="homework-item" bindtap="goToDetail" data-url="{{item.url}}">
<view class="title">
<view class="title-before"></view>{{item.update_time}}
</view>
<view class="disbox">
<view class="homework-info">
<text class="homework-title">{{item.title}}</text>
<!-- <text class="homework-summary">{{item.summary}}</text> -->
</view>
<image class="homework-thumb" src="{{item.thumb_url}}" mode="aspectFill"></image>
</view>
</view>
</block>
<!-- 加载中状态 -->
<view wx:if="{{isLoading}}" class="loading">加载中...</view>
<!-- 没有更多数据提示 -->
<view wx:if="{{!hasMore}}" class="no-more">没有更多数据了</view>
</view>
</view>