finai/miniapp/components/side-drawer/index.wxml

40 lines
1.5 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="side-drawer {{open ? 'open' : ''}}" catchtouchmove="_stop">
<view class="side-mask" bindtap="_onClose"></view>
<view class="side-panel" catchtap="_stop">
<view class="panel-head">
<view class="panel-title">历史问答</view>
<view class="panel-new" bindtap="_onNewChat"> 新对话</view>
</view>
<scroll-view class="panel-list" scroll-y="{{true}}" enhanced="{{true}}" show-scrollbar="{{false}}">
<block wx:if="{{sessionsLoading}}">
<view class="panel-empty">加载中...</view>
</block>
<block wx:elif="{{!sessions || sessions.length === 0}}">
<view class="panel-empty">暂无历史</view>
</block>
<block wx:else>
<view
class="sess-item {{item.id === currentSid ? 'active' : ''}}"
wx:for="{{sessions}}"
wx:key="id"
data-id="{{item.id}}"
bindtap="_onSelect"
>
<view class="sess-title">{{item.title || '未命名会话'}}</view>
<view class="sess-time">{{item._time}}</view>
</view>
</block>
</scroll-view>
<view class="panel-foot">
<view class="foot-user">
<view class="foot-avatar">{{avatarChar}}</view>
<view class="foot-user-info">
<view class="foot-name">{{userName || '未登录'}}</view>
<view wx:if="{{userSub}}" class="foot-sub">{{userSub}}</view>
</view>
</view>
<view class="foot-logout" bindtap="_onLogout">退出登录</view>
</view>
</view>
</view>