Files
a_long/pages/guanzhual/guanzhual.wxml
2026-06-14 02:38:05 +08:00

39 lines
1.1 KiB
Plaintext

<view class="guanzhual-page">
<!-- 头部信息区 -->
<view class="header-info">
<view class="title-section">
<text class="main-title">关注快手</text>
<text class="visit-count">{{visitCount}}次浏览</text>
</view>
<view class="sub-info">
<text class="update-time" wx:if="{{lastUpdate}}">更新时间:{{lastUpdate}}</text>
</view>
</view>
<!-- 图片列表 -->
<view class="image-list">
<block wx:for="{{images}}" wx:key="index">
<view class="image-item">
<image
src="{{item}}"
mode="widthFix"
lazy-load="true"
bindload="onImageLoad"
binderror="onImageError"
></image>
</view>
</block>
<view wx:if="{{images.length === 0 && !loading}}" class="empty-tip">
<text>暂无内容</text>
</view>
</view>
<!-- 加载状态 -->
<view class="loading-container" wx:if="{{loading}}">
<view class="loading-spinner"></view>
<text>加载中...</text>
</view>
<!-- 全局通知组件 -->
<global-notification id="global-notification" />
</view>