记账微信小程序
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.5 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">
1 week ago
<!-- <navigator url="/pages/category/category" class="function-item">
1 week ago
<view class="function-icon">
<text class="iconfont icon-tags"></text>
</view>
<text class="function-name">分类管理</text>
<text class="iconfont icon-arrow-right"></text>
1 week ago
</navigator> -->
1 week ago
1 week ago
<!-- <view class="function-item" bindtap="exportData">
1 week ago
<view class="function-icon">
<text class="iconfont icon-download"></text>
</view>
<text class="function-name">导出数据</text>
<text class="iconfont icon-arrow-right"></text>
1 week ago
</view> -->
1 week ago
1 week ago
<!-- <view class="function-item" bindtap="clearData">
1 week ago
<view class="function-icon">
<text class="iconfont icon-trash"></text>
</view>
<text class="function-name">清空数据</text>
<text class="iconfont icon-arrow-right"></text>
1 week ago
</view> -->
1 week ago
1 week ago
<!-- <view class="function-item" bindtap="showAbout">
1 week ago
<view class="function-icon">
<text class="iconfont icon-info"></text>
</view>
<text class="function-name">关于我们</text>
<text class="iconfont icon-arrow-right"></text>
1 week ago
</view> -->
1 week ago
<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>
<!-- 数据统计 -->
1 week ago
<!-- <view class="stats-card">
1 week ago
<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>
1 week ago
</view> -->
1 week ago
</view>