feat(my): 新增个人信息、帮助中心、问题详情页面并接入导航
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.7
parent
cd11d711d5
commit
3a67b26ed6
@@ -0,0 +1,51 @@
|
||||
<view class="personalInformation">
|
||||
<view class="card">
|
||||
<view class="row row-avatar">
|
||||
<view class="label">头像</view>
|
||||
<view class="value">
|
||||
<view class="avatar">狗</view>
|
||||
<view class="arrow"></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">名字</view>
|
||||
<view class="value">{{ userInfo.name }}</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">身份证</view>
|
||||
<view class="value">{{ userInfo.idCard }}</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">性别</view>
|
||||
<view class="value">{{ userInfo.gender }}</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">年龄</view>
|
||||
<view class="value">{{ userInfo.age }}</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">单位</view>
|
||||
<view class="value">{{ userInfo.company }}</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">部门</view>
|
||||
<view class="value">{{ userInfo.department }}</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">身高</view>
|
||||
<view class="value">{{ userInfo.height }}</view>
|
||||
</view>
|
||||
|
||||
<view class="row">
|
||||
<view class="label">体重</view>
|
||||
<view class="value">{{ userInfo.weight }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user