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.
62 lines
2.2 KiB
62 lines
2.2 KiB
<!--pages/user/index.wxml-->
|
|
<view class="container">
|
|
<mp-cells ext-class="page_hd" wx:if="{{authType === 2}}">
|
|
<mp-cell bindtap="onTapItem" data-type="myInfo">
|
|
<view class="user_hd">
|
|
<!-- <image slot="icon" class="user_logo" src=""/> -->
|
|
<open-data class="user_logo" slot="icon" type="userAvatarUrl"></open-data>
|
|
<!-- <view slot="title" class="user_name">啦啦啦拉两岸啦啦啦啦啦靓阿拉啦啦啦</view> -->
|
|
<open-data class="user_name" type="userNickName" lang="zh_CN"></open-data>
|
|
</view>
|
|
</mp-cell>
|
|
</mp-cells>
|
|
<mp-cells ext-class="page_hd" wx:if="{{authType === 1}}">
|
|
<mp-cell bindtap="onTapItem" data-type="myInfo">
|
|
<view class="user_auth_hd">
|
|
<open-data class="user_logo" type="userAvatarUrl"></open-data>
|
|
<open-data class="user_auth_name" type="userNickName"></open-data>
|
|
<!-- 需要使用 button 来授权登录 -->
|
|
<button class="authBtn" size="mini" wx:if="{{canIUse}}" open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo">授权登录</button>
|
|
<view wx:else>请升级微信版本</view>
|
|
</view>
|
|
</mp-cell>
|
|
</mp-cells>
|
|
<mp-cells ext-class="page_bd">
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="myMessage"
|
|
icon="/images/user/msg.png"
|
|
title="我的消息"
|
|
link="true"
|
|
ext-class="cell-item">
|
|
<view wx:if="{{messageTotal > 0 }}" slot="footer" class="msg_footer">你有{{messageTotal}}条消息</view>
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="myTopics"
|
|
icon="/images/user/topic.png"
|
|
title="我的议题"
|
|
link="true"
|
|
ext-class="cell-item">
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="myFavorite"
|
|
icon="/images/user/collect.png"
|
|
title="我的收藏"
|
|
link="true"
|
|
ext-class="cell-item">
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="myIdea"
|
|
icon="/images/user/pins.png"
|
|
title="我的金点子"
|
|
link="true"
|
|
ext-class="cell-item">
|
|
</mp-cell>
|
|
<mp-cell
|
|
bindtap="onTapItem" data-type="myActivity"
|
|
icon="/images/user/activity.png"
|
|
title="我的活动"
|
|
link="true"
|
|
ext-class="cell-item">
|
|
</mp-cell>
|
|
</mp-cells>
|
|
</view>
|
|
|