123456789101112131415161718192021 |
- <!--dispatcher/pages/information/information.wxml-->
- <import src="../../../templates/loading/loading.wxml" />
- <view class='container'>
- <template is='loading' wx:if='{{!isLoaded}}'></template>
- <view class='wrapper' wx:else>
- <view class='list'>
- <view class='li' bindtap='uploadImgCtl'>
- <view class='li-label'>头像</view>
- <image class='li-image' src='{{userInfo.avatarUrl? userInfo.avatarUrl : "../../../assets/default_headicon.png"}}'></image>
- </view>
- <view class='li'>
- <view class='li-label'>姓名</view>
- <view class='li-text'>{{userInfo.nickName}}</view>
- </view>
- <view class='li'>
- <view class='li-label'>性别</view>
- <view class='li-text'>{{userInfo.gender == 1 ? '男' : userInfo.gender == 2 ? '女' : '' }}</view>
- </view>
- </view>
- </view>
- </view>
|