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.
21 lines
826 B
21 lines
826 B
<view class="pages"> |
|
<mp-navigation-bar ext-class="set-bar" title="消息通知"></mp-navigation-bar> |
|
<view class="main"> |
|
<view class="tab"> |
|
<view class="tab-item {{item.id===active?'active':''}}" wx:for="{{tabList}}" wx:for-index="i" wx:for-item="item" |
|
wx:key="id" bindtap="tabDowm" data-id="{{item.id}}"> |
|
<text class="tab-title">{{item.name}}</text> |
|
<image class="tab-tag" src="../../assets/images/tab-tag.png"></image> |
|
</view> |
|
</view> |
|
<view class="info" wx:for="{{dataList}}" wx:for-index="i" wx:for-item="item" wx:key="i"> |
|
<view class="text"> |
|
{{item.messageTitle}} |
|
</view> |
|
<text class="timer">{{item.updateDate}}</text> |
|
</view> |
|
<view class="noText" style="padding-top:50rpx" wx:if="{{dataList<=0}}"> |
|
暂无数据 |
|
</view> |
|
</view> |
|
</view>
|
|
|