WechatOwnerService/pages/my/my.wxml
2019-11-24 00:31:04 +08:00

39 lines
1.2 KiB
Plaintext

<!--index.wxml-->
<view class="user-container bg-white">
<view class="userinfo">
<block wx:if="{{!hasLogin}}">
<image class="userinfo-avatar" src="../../images/login.png" background-size="cover" catchtap="doLogin"></image>
<text class="userinfo-nickname">点击登录</text>
</block>
<block wx:else>
<image class="userinfo-avatar" src="{{userInfo.avatarUrl}}" background-size="cover"></image>
<text class="userinfo-nickname">{{userInfo.nickName}}</text>
</block>
</view>
</view>
<view class="tab-container bg-white">
<view class="tab-item border-bottom" hover-class="tab-item-hover" catchtap="enterCommunity">
<view>
<text class="iconfont iconaccount icon"></text>
<text class="tab-text">加入小区</text>
</view>
<view class="tab-arrow"></view>
</view>
<view class="tab-item" hover-class="tab-item-hover" catchtap="goMyBooks">
<view>
<image src="../../images/bought.png" mode="aspectFit" class="tab-icon"></image>
<text class="tab-text">已购</text>
</view>
<view class="tab-arrow"></view>
</view>
</view>