You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.4 KiB
76 lines
2.4 KiB
1 week ago
|
<view class="container">
|
||
|
<!-- 用户信息 -->
|
||
|
<view class="user-info">
|
||
|
<view class="avatar">
|
||
|
<image src="/images/icon/user-avatar.png" mode="widthFix"></image>
|
||
|
</view>
|
||
|
<view class="user-details">
|
||
|
<text class="username">记账用户</text>
|
||
|
<text class="user-desc">开始你的记账之旅</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<!-- 功能列表 -->
|
||
|
<view class="function-list">
|
||
|
<navigator url="/pages/category/category" class="function-item">
|
||
|
<view class="function-icon">
|
||
|
<text class="iconfont icon-tags"></text>
|
||
|
</view>
|
||
|
<text class="function-name">分类管理</text>
|
||
|
<text class="iconfont icon-arrow-right"></text>
|
||
|
</navigator>
|
||
|
|
||
|
<view class="function-item" bindtap="exportData">
|
||
|
<view class="function-icon">
|
||
|
<text class="iconfont icon-download"></text>
|
||
|
</view>
|
||
|
<text class="function-name">导出数据</text>
|
||
|
<text class="iconfont icon-arrow-right"></text>
|
||
|
</view>
|
||
|
|
||
|
<view class="function-item" bindtap="clearData">
|
||
|
<view class="function-icon">
|
||
|
<text class="iconfont icon-trash"></text>
|
||
|
</view>
|
||
|
<text class="function-name">清空数据</text>
|
||
|
<text class="iconfont icon-arrow-right"></text>
|
||
|
</view>
|
||
|
|
||
|
<view class="function-item" bindtap="showAbout">
|
||
|
<view class="function-icon">
|
||
|
<text class="iconfont icon-info"></text>
|
||
|
</view>
|
||
|
<text class="function-name">关于我们</text>
|
||
|
<text class="iconfont icon-arrow-right"></text>
|
||
|
</view>
|
||
|
|
||
|
<view class="function-item" bindtap="outLogin">
|
||
|
<view class="function-icon">
|
||
|
<text class="iconfont icon-info"></text>
|
||
|
</view>
|
||
|
<text class="function-name">退出登录</text>
|
||
|
<text class="iconfont icon-arrow-right"></text>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
|
||
|
<!-- 数据统计 -->
|
||
|
<view class="stats-card">
|
||
|
<text class="stats-title">记账统计</text>
|
||
|
<view class="stats-grid">
|
||
|
<view class="stats-item">
|
||
|
<text class="stats-value">{{totalRecords}}</text>
|
||
|
<text class="stats-label">总记录数</text>
|
||
|
</view>
|
||
|
<view class="stats-item">
|
||
|
<text class="stats-value">{{firstRecordDate || '-'}}</text>
|
||
|
<text class="stats-label">首次记账</text>
|
||
|
</view>
|
||
|
<view class="stats-item">
|
||
|
<text class="stats-value">{{consecutiveDays}}</text>
|
||
|
<text class="stats-label">连续记账(天)</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|