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.
|
|
|
<!--pages/user/index.wxml-->
|
|
|
|
<view class="container">
|
|
|
|
<mp-cells ext-class="page_hd">
|
|
|
|
<mp-cell bindtap="onTapItem" data-type="myInfo">
|
|
|
|
<view class="user_hd" wx:if="{{avatarUrl && nickName}}">
|
|
|
|
<image slot="icon" class="user_logo" src="{{avatarUrl}}"/>
|
|
|
|
<view slot="title" class="user_name">{{nickName}}</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>
|