1234567891011121314151617181920212223242526272829 |
- <import src="../../../common/head.wxml" />
- <import src="../../../common/foot.wxml" />
- <view class="container page" data-weui-theme="{{theme}}">
- <template is="head" data="{{title: 'getUserInfo'}}"/>
- <view class="page-body">
- <view class="page-section">
- <view class="page-body-info">
- <view class="page-body-title">用户信息</view>
- <block wx:if="{{hasUserInfo === false}}">
- <text class="page-body-text">未获取</text>
- <text class="page-body-text">点击绿色按钮可获取用户头像及昵称</text>
- </block>
- <block wx:if="{{hasUserInfo === true}}">
- <image class="userinfo-avatar" src="{{userInfo.avatarUrl}}"></image>
- <text class="userinfo-nickname">{{userInfo.nickName}}</text>
- </block>
- </view>
- <view class="btn-area">
- <button wx:if="{{canIUseGetUserProfile}}" type="primary" bindtap="handleGetUserProfile"> 获取用户信息GetUserProfile</button>
- <button wx:else type="primary" open-type="getUserInfo" bindgetuserinfo="getUserInfo">获取用户信息getUserInfo</button>
- <button bindtap="clear">清空</button>
- </view>
- </view>
- </view>
- <template is="foot" />
- </view>
|