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.
27 lines
814 B
27 lines
814 B
<!-- pages/index/index.wxml -->
|
|
<view class="container">
|
|
<view class="header">
|
|
<image class="avatar" src="{{userInfo.avatarUrl}}" />
|
|
<view class="info">
|
|
<text class="nickname">{{userInfo.nickName}}</text>
|
|
<view class="menu">
|
|
<view class="menu-item">
|
|
<text>性别:</text>
|
|
<text>{{userInfo.gender}}</text>
|
|
</view>
|
|
<view class="menu-item">
|
|
<text>地区:</text>
|
|
<text>{{userInfo.city}} {{userInfo.province}}</text>
|
|
</view>
|
|
<view class="menu-item">
|
|
<text>特长:</text>
|
|
<text>{{userInfo.specialty}}</text>
|
|
</view>
|
|
<view class="menu-item">
|
|
<text>爱好:</text>
|
|
<text>{{userInfo.hobbies}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |