crawler-MiniProgram/新闻小程序/pages/me/me.wxml

26 lines
805 B
Plaintext

<view class="header">
<button class="login_btn" wx:if="{{!userInfo}}" bindtap="login" type="primary">授权登录</button>
<view class="root" wx:else>
<image class="touxiang" src="{{userInfo.avatarUrl}}"></image>
<text class="nickName">{{userInfo.nickName}}</text>
<text class="login_out" bindtap="loginOut">退出登录</text>
</view>
</view>
<view wx:if="{{userInfo}}">
<view class="item">
<button class="button" bindtap="gotoCollect">我的收藏</button>
<view class="right_arrow"></view>
</view>
</view>
<view class="item">
<button class="button" open-type="feedback">意见反馈</button>
<view class="right_arrow"></view>
</view>
<view class="item">
<button class="button" open-type="contact">在线客服</button>
<view class="right_arrow"></view>
</view>