49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
<!-- 加载态 -->
|
|
<view class="page-loading" wx:if="{{pageState === 'loading'}}">
|
|
<t-loading theme="circular" size="80rpx" text="加载中..." />
|
|
</view>
|
|
|
|
<!-- 空态 -->
|
|
<view class="page-empty" wx:elif="{{pageState === 'empty'}}">
|
|
<t-empty description="暂无对话记录" />
|
|
</view>
|
|
|
|
<!-- 正常态 -->
|
|
<block wx:elif="{{pageState === 'normal'}}">
|
|
<!-- 对话列表 -->
|
|
<view class="chat-list">
|
|
<view
|
|
class="chat-item"
|
|
wx:for="{{list}}"
|
|
wx:key="id"
|
|
data-id="{{item.id}}"
|
|
bindtap="onItemTap"
|
|
>
|
|
<view class="chat-icon-box">
|
|
<t-icon name="chat" size="40rpx" color="#ffffff" />
|
|
</view>
|
|
<view class="chat-content">
|
|
<view class="chat-top">
|
|
<text class="chat-title text-ellipsis">{{item.title}}</text>
|
|
<text class="chat-time">{{item.timeLabel}}</text>
|
|
</view>
|
|
<view class="chat-bottom">
|
|
<text class="chat-summary text-ellipsis" wx:if="{{item.customerName}}">{{item.customerName}} · {{item.lastMessage}}</text>
|
|
<text class="chat-summary text-ellipsis" wx:else>{{item.lastMessage}}</text>
|
|
</view>
|
|
</view>
|
|
<t-icon name="chevron-right" size="32rpx" color="#c5c5c5" />
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 底部提示 -->
|
|
<view class="list-footer">
|
|
<text class="footer-text">— 已加载全部记录 —</text>
|
|
</view>
|
|
|
|
<!-- AI 悬浮按钮 -->
|
|
<ai-float-button bottom="{{120}}" />
|
|
</block>
|
|
|
|
<dev-fab />
|