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.
|
|
|
<view class="content">
|
|
|
|
<scroll-view class="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower">
|
|
|
|
<view class="box">
|
|
|
|
<view class="card" wx:for="{{tableData}}" wx:key="index" data-item="{{item}}" data-index="{{index}}">
|
|
|
|
<view class="left">
|
|
|
|
<image src="/images/icon/notice.png" class="icon-56" mode="" />
|
|
|
|
</view>
|
|
|
|
<view class="right">
|
|
|
|
<view class="top"><text class="title">{{item.title}}</text>
|
|
|
|
<text class="{{item.readFlag != '1'?'':'gray'}}" style="font-size: 26rpx; font-weight: 300;">{{item.createTime}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="bottom">
|
|
|
|
<view class=" ellipsis-2">
|
|
|
|
{{item.content}}
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<load-more loadVisible="{{loadMoreVisible}}" loadType="{{loadMoreType}}"></load-more>
|
|
|
|
<van-empty description="暂无消息" wx:if="{{nodata}}" />
|
|
|
|
</scroll-view>
|
|
|
|
</view>
|
|
|
|
<custom-tab-bar></custom-tab-bar>
|