市北人才赋能平台 --小程序端
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.

65 lines
2.0 KiB

6 years ago
<!--pages/user/index.wxml-->
<view class="container">
<mp-cells ext-class="page_hd" wx:if="{{isAuth}}">
<mp-cell bindtap="onTapItem" data-type="myInfo">
6 years ago
<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>
6 years ago
</mp-cells>
<mp-cells ext-class="page_hd" wx:if="{{!isAuth}}">
<mp-cell bindtap="onTapItem" data-type="myInfo">
<view class="user_hd">
<image slot="icon" class="user_logo" src="/images/topic/avatar.png"/>
<view slot="title" class="user_name">登录/注册</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="myWhistle"
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">
6 years ago
</mp-cell>
</mp-cells>
</view>