44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
<navBar title="我的" fixed="{{true}}" bgColor="{{navBgColor}}" />
|
|
|
|
<view class="my">
|
|
<view class="header">
|
|
<view class="bg">
|
|
<image src="/images/my/bg.png" mode="aspectFit" />
|
|
</view>
|
|
|
|
<view class="user" wx:if="{{ userInfo }}">
|
|
<view class="userAvatar">
|
|
<image src="{{ userInfo.sex_dictText === '女' ? '/images/woman.png' : '/images/man.png' }}" mode="aspectFit" />
|
|
</view>
|
|
<view class="userInfo">
|
|
<view class="userName">{{ userInfo.realname }}</view>
|
|
<view class="userSex">
|
|
<text class="meta-text">{{ userInfo.sex_dictText }}·{{ userInfo.age }}岁</text>
|
|
<text class="meta-divider">|</text>
|
|
<text class="meta-text">{{ userInfo.height }}cm</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="page-container">
|
|
<view class="list">
|
|
<view class="list-item" bind:tap="onTapPersonalInfo">
|
|
<view>
|
|
<image src="/images/my/individual.png" mode="aspectFit" />
|
|
</view>
|
|
<view>个人信息</view>
|
|
<view class="arrow"></view>
|
|
</view>
|
|
<view class="list-item" bind:tap="onTapHelpCenter">
|
|
<view>
|
|
<image src="/images/my/help.png" mode="aspectFit" />
|
|
</view>
|
|
<view>帮助中心</view>
|
|
<view class="arrow"></view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="exitBtn" bind:tap="onLogout">退出登录</view>
|
|
</view>
|
|
</view> |