Files
MiniProgram/ProjectLiaisonForm/pages/image/status/index.wxml

26 lines
853 B
Plaintext
Raw Normal View History

2025-08-15 14:05:08 +08:00
<view class="tr">
<view class="col">
<view class="text">加载默认提示</view>
<t-image id="loading-img" shape="round" width="72" height="72" />
</view>
<view class="col">
<view class="text">加载自定义提示</view>
<t-image id="loading-img-custom" shape="round" loading="slot" width="72" height="72">
<t-loading slot="loading" theme="spinner" size="40rpx" loading />
</t-image>
</view>
</view>
<view class="tr">
<view class="col">
<view class="text">失败默认提示</view>
<t-image id="loading-img" shape="round" src="" width="72" height="72" />
</view>
<view class="col">
<view class="text">失败自定义提示</view>
<t-image src="" shape="round" error="slot" width="72" height="72">
<text class="error-text" slot="error">加载失败</text>
</t-image>
</view>
</view>