| 123456789101112131415161718192021222324252627282930 |
- <view class="container">
- <auth bindlogin="onShow" />
- <lip-sync />
-
- <view class="page-title" style="top: {{statusBarHeight + 6}}px; height: {{navHeight - 12}}px">
- <navigator open-type="navigateBack" url="/pages/index/index"><image src="/static/images/return@2x.png"></image></navigator>
- <navigator open-type="navigateBack" url="/pages/index/index"><image src="/static/images/home@2x.png"></image></navigator>
- </view>
-
- <view class="userinfo">
- <image src="{{bgImg}}" class="user-bg"></image>
- </view>
- <view class="aaaaa">
- <view class="u-avatar" bindtap="tapByIdx" data-url="/pages/user/user">
- <image class="userinfo-avatar" src="{{ userInfo.avatarUrl || '/static/images/avatar_default.png' }}" background-size="cover"></image>
- <text class="userinfo-nickname">{{userInfo.nickName || '游客'}}</text>
- </view>
- <view class="order-list-v">
- <view class="title">个人信息</view>
- <view class="desc"><text>名称</text>{{userInfo.nickName}}</view>
- <view class="desc"><text>单位</text>{{userInfo.departmentName}}</view>
- </view>
- </view>
- <view class="logout" bindtap="logout">
- 退出
- </view>
- </view>
|