53 lines
1.7 KiB
Plaintext
53 lines
1.7 KiB
Plaintext
<!-- 我的页面 -->
|
|
<view class="page-my-profile">
|
|
<!-- 用户信息区域 -->
|
|
<view class="user-card">
|
|
<image class="avatar" src="{{userInfo.avatar}}" mode="aspectFill" />
|
|
<view class="user-info">
|
|
<view class="name-row">
|
|
<text class="name">{{userInfo.name}}</text>
|
|
<text class="role-tag">{{userInfo.role}}</text>
|
|
</view>
|
|
<text class="store-name">{{userInfo.storeName}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 菜单列表 -->
|
|
<view class="menu-list">
|
|
<view class="menu-item" bind:tap="onMenuTap" data-key="notes">
|
|
<view class="menu-left">
|
|
<view class="menu-icon icon-notes">
|
|
<t-icon name="edit-1" size="40rpx" color="#0052d9" />
|
|
</view>
|
|
<text class="menu-text">备注记录</text>
|
|
</view>
|
|
<t-icon name="chevron-right" size="32rpx" color="#c5c5c5" />
|
|
</view>
|
|
|
|
<view class="menu-item" bind:tap="onMenuTap" data-key="chat-history">
|
|
<view class="menu-left">
|
|
<view class="menu-icon icon-chat">
|
|
<t-icon name="chat" size="40rpx" color="#00a870" />
|
|
</view>
|
|
<text class="menu-text">助手对话记录</text>
|
|
</view>
|
|
<t-icon name="chevron-right" size="32rpx" color="#c5c5c5" />
|
|
</view>
|
|
|
|
<view class="menu-item menu-item--last" bind:tap="onLogout">
|
|
<view class="menu-left">
|
|
<view class="menu-icon icon-logout">
|
|
<t-icon name="poweroff" size="40rpx" color="#e34d59" />
|
|
</view>
|
|
<text class="menu-text">退出账号</text>
|
|
</view>
|
|
<t-icon name="chevron-right" size="32rpx" color="#c5c5c5" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- AI 悬浮按钮 — TabBar 页面 bottom 200rpx -->
|
|
<ai-float-button visible="{{true}}" bottom="200" />
|
|
|
|
<dev-fab />
|