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.
20 lines
1.0 KiB
20 lines
1.0 KiB
<view class="content">
|
|
<scroll-view class="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower">
|
|
<view class="card" wx:for="{{tableData}}" wx:key="index" data-item="{{item}}" bind:tap="toDetail">
|
|
<view class="title" >
|
|
<view>
|
|
<text class="{{item.type == 'event'?'blue_small':'red_small'}}">{{item.type == 'event'?'事件':'需求'}}</text>
|
|
{{item.name}} {{item.mobile}}
|
|
</view>
|
|
</view>
|
|
<view style="margin-top: 10rpx;">
|
|
<text class="card_content" maxLines="{{2}}" overflow="ellipsis">{{item.content}}</text>
|
|
</view>
|
|
<view class="bottom">
|
|
<view style="color: #C1C1C1;font-size: 26rpx;">{{item.time}}</view>
|
|
</view>
|
|
</view>
|
|
<load-more loadVisible="{{loadMoreVisible}}" loadType="{{loadMoreType}}" ></load-more>
|
|
<no-data isShow="{{nodata}}" wx:if="{{nodata}}"></no-data>
|
|
</scroll-view>
|
|
</view>
|