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.
44 lines
1.5 KiB
44 lines
1.5 KiB
<view class="container">
|
|
<!-- 用户信息 -->
|
|
<view class="user-section">
|
|
<view class="user-info">
|
|
<image class="user-avatar" src="/images/icons/avatar.png" mode="aspectFill"></image>
|
|
<view class="user-details">
|
|
<text class="user-name">用户XXX</text>
|
|
<text class="user-desc">中南民族大学学生</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 功能入口 -->
|
|
<view class="features-section">
|
|
<view class="feature-item" bindtap="showFeatureTip" data-feature="收藏">
|
|
<view class="feature-icon">❤️</view>
|
|
<text class="feature-name">我的收藏</text>
|
|
<view class="feature-arrow">></view>
|
|
</view>
|
|
|
|
<view class="feature-item" bindtap="showFeatureTip" data-feature="发布">
|
|
<view class="feature-icon">📝</view>
|
|
<text class="feature-name">我的发布</text>
|
|
<view class="feature-arrow">></view>
|
|
</view>
|
|
|
|
<view class="feature-item" bindtap="showFeatureTip" data-feature="订单">
|
|
<view class="feature-icon">📋</view>
|
|
<text class="feature-name">我的订单</text>
|
|
<view class="feature-arrow">></view>
|
|
</view>
|
|
|
|
<view class="feature-item" bindtap="showFeatureTip" data-feature="设置">
|
|
<view class="feature-icon">⚙️</view>
|
|
<text class="feature-name">设置</text>
|
|
<view class="feature-arrow">></view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 版本信息 -->
|
|
<view class="version-section">
|
|
<text class="version-text">版本 1.0.0</text>
|
|
</view>
|
|
</view> |