修正了 pages 名为拼音的问题
This commit is contained in:
39
pages/manager-assign/manager-assign.wxml
Normal file
39
pages/manager-assign/manager-assign.wxml
Normal file
@@ -0,0 +1,39 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user