<view class="login-container">
    <block s-if="{{page === 'userinfo'}}">
        <button
            s-if="{{!isLogin}}"
            class="brand-atmosphere"
            open-type="getUserInfo"
            bindgetuserinfo="getUserinfo"
            hover-class="{{isLogin ? '' : 'none'}}"
        >
            <image class="app-logo" mode="widthFix" src="{{avatarUrl ? avatarUrl : './../images/default_logo.jpeg'}}"></image>
            <text class="app-title">{{nickName}}</text>
        </button>
        <view s-else class="brand-atmosphere">
            <image class="app-logo" mode="widthFix" src="{{avatarUrl ? avatarUrl : './../images/default_logo.jpeg'}}"></image>
            <text class="app-title">{{nickName}}</text>
        </view>
    </block>
    <block s-if="{{page === 'phone'}}">
        <button
            s-if="{{!isLogin}}"
            class="brand-atmosphere"
            open-type="getPhoneNumber"
            bindgetphonenumber="getPhoneNumber"
        >
            <image class="app-logo" mode="widthFix" src="{{avatarUrl ? avatarUrl : './../images/default_logo.jpeg'}}"></image>
            <text class="app-title">立即登录</text>
        </button>
        <view s-else class="brand-atmosphere">
            <open-data class="app-logo" type="userAvatarUrl"></open-data>
            <text class="app-title">{{phone}}</text>
        </view>
    </block>
    <view class="functional-part">
        <text class="app-description">登录帐号可以享受以下功能和权益</text>
        <view class="feature-container">
            <block s-for="features">
                <view class="feature-block" data-info="{{item}}" catchtap="onTap">
                    <image class="feature-icon" mode="widthFix" src="{{item.image}}"></image>
                    <text class="feature-name">{{item.name}}</text>
                </view>
            </block>
        </view>
    </view>
</view>