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.
71 lines
1.8 KiB
71 lines
1.8 KiB
<!--pages/usercenter/usercenter.wxml-->
|
|
<view wx:if="{{isHide}}">
|
|
<view wx:if="{{canIUse}}">
|
|
<view class='header'>
|
|
<image src='/static/images/weixin_1.png'></image>
|
|
</view>
|
|
|
|
<view class='content'>
|
|
<view>申请获取以下权限</view>
|
|
<text>获得你的公开信息(昵称,头像等)</text>
|
|
</view>
|
|
|
|
<button class='bottom' type='primary' open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="bindGetUserInfo">
|
|
授权登录
|
|
</button>
|
|
</view>
|
|
<view wx:else>请升级微信版本</view>
|
|
</view>
|
|
|
|
<view wx:else>
|
|
<view class="userinfo">
|
|
<image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" background-size="cover"></image>
|
|
<text class="userinfo-nickname">{{userInfo.nickName}}</text>
|
|
</view>
|
|
|
|
<view class="hr"></view>
|
|
<view class='item'>
|
|
<view class="title">手机绑定</view>
|
|
<view class="detail2">
|
|
<text>></text>
|
|
</view>
|
|
</view>
|
|
<view class="line"></view>
|
|
|
|
<view class='item'>
|
|
<view class="title">写博客</view>
|
|
<view class="detail2">
|
|
<text>></text>
|
|
</view>
|
|
</view>
|
|
<view class="hr"></view>
|
|
<view class='item'>
|
|
<view class="title">我的博客</view>
|
|
<view class="detail2">
|
|
<text> ></text>
|
|
</view>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="item">
|
|
<view class="title">我的收藏</view>
|
|
<view class="detail2">
|
|
<text> ></text>
|
|
</view>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="item">
|
|
<view class="title">意见反馈</view>
|
|
<view class="detail2">
|
|
<text> ></text>
|
|
</view>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="item">
|
|
<view class="title">设置</view>
|
|
<view class="detail2">
|
|
<text> ></text>
|
|
</view>
|
|
</view>
|
|
<view class="hr"></view>
|
|
</view>
|